- int a = 3;
- 2 Test(a);//调用者
- 3 //Console.WriteLine(a);
- 4 Add(30, 20,"aaa");
- 5 //如果一个方法一旦有参数,那么调用者就必须传参数,并且传参数的个数与对应位置上的类型必须一致
- 6 }
- 7 //被调用者
- 8 public static void Test(string a) //形参
- 9 {
- 10 a = a + 1;
- 11 Console.WriteLine(a);
- 12 }
- 13 //求两个整数的合
- 14 public static void Add(string a, string b,int name)
- 15 {
- 16 Console.WriteLine("a+b={0}", a + b);
- 17 }
- 18
复制代码 |