c#中方法的参数可以有哪几种传递方式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#中方法的参数可以有哪几种传递方式相关的知识,希望对你有一定的参考价值。

c#中方法的参数可以有三种传递方式,方式如下:

1、传入一个大小为2的一位数组来传递最大值和最小值。

using System;  

using System.Collections.Generic;  

using System.Linq;  

using System.Text;  

namespace ConsoleApplication3  

 

class Program  

 

static void Main(string[] args)  

 

Program p = new Program();  

int maxa = 0,mina =0;  

int []array = new int[5]1,2,3,4,5;  

int[] array2 = new int[2];  

p.getMaxandMin(array, array2);  

Console.WriteLine("最大值为" + array2[0]);  

Console.WriteLine("最小值为" + array2[1]);  

Console.Read();  

 

public  void   getMaxandMin(int[] array,int []array2)  

 

int max = array[0];  

int min= array[0];  

for (int i = 0; i < array.Length; i++)  

if (array[i] > max)  

max = array[i];  

 

if (array[i] < min)  

min = array[i];  

 

 

array2[0] = max;  

array2[1] = min;  

 

 

 

2、传入一个对象来传递数组的最大值和最小值。

using System;  

using System.Collections.Generic;  

using System.Linq;  

using System.Text;  

namespace ConsoleApplication3  

 

class Program  

 

private int max;  

private int min;  

static void Main(string[] args)  

 

Program p = new Program();  

p.max = 0;  

p.min = 0;  

int []array = new int[5]1,2,3,4,5;  

p.getMaxandMin(array, p);  

Console.WriteLine("最大值为0,最小值为1", p.max,p.min);  

Console.Read();  

 

public  void   getMaxandMin(int[] array,Program p2)  

 

int max = array[0];  

int min= array[0];  

for (int i = 0; i < array.Length; i++)  

if (array[i] > max)  

max = array[i];  

 

if (array[i] < min)  

min = array[i];  

 

 

p2.max = max;  

p2.min = min;  

 

 

 

3、用ref 指针来传递参数 。

namespace ConsoleApplication3  

 

class Program  

 

private int max;  

private int min;  

static void Main(string[] args)  

 

Program p = new Program();  

int max1=0;  

int min1=0;  

int[] array = new int[5] 1, 2, 3, 4, 5 ;  

p.getMaxandMin(array, ref max1, ref min1);  

Console.WriteLine("最大值为0,最小值为1",max1, min1);  

Console.Read();  

 

public void getMaxandMin(int[] array, ref int max,ref int min)  

 

max = array[0];  

min = array[0];  

for (int i = 0; i < array.Length; i++)  

 

if (array[i] > max)  

 

max = array[i];  

 

if (array[i] < min)  

 

min = array[i];  

 

 

 

 

 

参考技术A 答案:1.按值传递:Value2.按址传递:ref3.传出参数:out4.可变参数:params

C#中方法中的参数传递

C#中方法中的参数传递

C#语言的参数传递跟C++、JAVA有什么区别呢?

实际上区别不大,C#中跟JAVA一样没有了C语言的指针参数传递,减少了复杂性,那C#中有哪几种实参参数呢?下面罗列:

1.值参数,不含任何修饰符

2.引用参数,以ref修饰符声明。这就跟其他语言有点不同,也只是修饰符这一块

3.输出参数,据我了解,java跟C++是没有所谓的输出参数的,以out修饰符声明。

4.数组参数,以params修饰符,注:这只是对一维数组或多维数组参数传递的参数,二维数组不能使用params修饰符。

 

废话不多说

代码清单:

namespace e1_10_1

    class g  public int a = 0;
    class Class1
    
        public static void F1(ref char i) //引用参数
         i = 'b'; 
        public static void F2(char i)   //值参数,形参类型为值类型
         i = 'd'; 
        public static void F3(out char i) //输出参数
         i = 'e'; 
        public static void F4(string s) //值参数,形参类型为字符串
         s = "xyz"; 
        public static void F5(g gg)     //值类型,形参为引用类型
         gg.a = 20;
        public static void F6(ref string s)//引用参数,形参类型为字符串
         s = "xyz"; 
        public static void F7(params int[] args)    //数组参数,有params说明
        
            Console.WriteLine("一维数组包含0个元素:", args.Length);
            foreach (int i in args)
                Console.Write("0", i);
        
        public static void F8(int[,] args)
        
            Console.WriteLine("二维数组包含0个元素:", args.Length);
            foreach (int i in args)
                Console.Write("0", i);
        
        static void Main(string[] args)
        
            char a = 'c';
            string s1 = "abc";
            F2(a);                         //值参数,不能修改外部的a
            Console.WriteLine(a);         //a没有被修改,还是原来的值'c'
            F1(ref a);                  //引用参数,函数修改外部的a的值
            Console.WriteLine(a);       //a被修改为b,显示b
            char j;
            F3(out j);                  //输出参数,结果输出到外部变量j
            Console.WriteLine(j);        //显示e,所以输出参数也是引用参数
            F4(s1);                     //值参数,参数类型为字符串,s1为字符串引用变量
            Console.WriteLine(s1);      //显示:abc,字符串s1不能被修改
            g g1 = new g();
            F5(g1);                     //值参数,但实参是一个类引用类型参数
            Console.WriteLine(g1.a.ToString()); //显示20,修改对象数据
            F6(ref s1);                 //引用参数,参数类型为字符串,s1为字符串引用变量
            Console.WriteLine(s1);      //显示:xyz,字符串s1被修改
            int[] b = 1, 2, 3 ;
            F7(b);                      //实参为数组类引用变量b
            Console.WriteLine();
            int[,] c =   1, 2, 3 ,  4, 5, 6  ;
            F8(c);
            Console.WriteLine();
        
    


运行效果:

 

以上是关于c#中方法的参数可以有哪几种传递方式的主要内容,如果未能解决你的问题,请参考以下文章

c# 参数传递方式?

react 传值有哪几种方式?

JS有哪几种传参方式

控制层action获取jsp传递过来的参数有哪几种:

C#中方法中的参数传递

表单有哪几种提交方式?不同提交方式中asp程序如何获取表单中的参数?