如何在 C# 中将参数传递给方法?


要在 C# 中将参数传递给方法,我们来看看如何按值传递参数。此机制中,在调用方法时,将为每个值参数创建新的存储位置。

实际参数的值会复制到其中。因此,在方法内部对参数所做的更改不影响参数。

以下示例展示了如何将参数传递给方法 -

示例

 实时演示

using System;

namespace Demo {
   class NumberManipulator {
      public void swap(int x, int y) {
         int temp;
         temp = x;
         x = y;
         y = temp;
      }
      static void Main(string[] args) {
         NumberManipulator n = new NumberManipulator();
         int a = 50;
         int b = 150;
         Console.WriteLine("Before swap, value of a : {0}", a);
         Console.WriteLine("Before swap, value of b : {0}", b);
         /* calling a function to swap the values */
         n.swap(a, b);
         Console.WriteLine("After swap, value of a : {0}", a);
         Console.WriteLine("After swap, value of b : {0}", b);
         Console.ReadLine();
      }
   }
}

输出

Before swap, value of a : 50
Before swap, value of b : 150
After swap, value of a : 50
After swap, value of b : 150

更新于: 20-06-2020

169 次浏览

开启您的职业生涯

完成本课程,获得认证

立即开始
广告