c#参数类型详解(传值参数,引用参数,输出参数,具名参数,可选参数,数组参数,扩展方法)

传值参数

1、值参数创建变量副本
2、对值参数的操作永远不影响变量的值

传值参数——值类型

传值参数——值类型
class Program
    {
        static void Main(string[] args)
        {
            int i = 5;
            Function(i);
            Console.WriteLine(i);
        }
        static void Function(int a)
        {
            a++;
            Console.WriteLine(a);
        }
    }
结果

传值参数——引用类型:创建新对象

传值参数——引用类型:创建新对象
 class Program
    {
        static void Main(string[] args)
        {
            Student student1 = new Student() { Name="Tom"};
            Function(student1);
            Console.WriteLine($"{student1.Name}");
        }
        static void Function(Student stu)
        {
            stu = new Student() {Name="Tim" };
            Console.WriteLine($"{stu.Name}");
        }
    }
    class Student
    {
        public string Name;
    }
输出结果

参数传递——引用类型:只操作对象,不创建新对象

参数传递——引用类型:只操作对象,不创建新对象
 class Program
    {
        static void Main(string[] args)
        {
            Student student1 = new Student() { Name="Tom"};
            Function(student1);
            Console.WriteLine($"{student1.Name}");
        }
        static void Function(Student stu)
        {
            stu.Name = "Tim";
            Console.WriteLine(stu.Name);
        }
    }
    class Student
    {
        public string Name;
    }
运行结果

引用参数

1、引用类型并不创建变量的副本
2、使用ref修饰符显式指出——此方法的副作用是改变实际参数的值

引用参数——值类型

引用参数——值类型
 class Program
    {
        static void Main(string[] args)
        {
            int i = 5;
            Function(ref i);
            Console.WriteLine(i);
        }
        static void Function(ref int a)
        {
            a++;
            Console.WriteLine(a);
        }
    }
结果

引用参数——引用类型:创建新对象

引用参数——引用类型:创建新对象
 class Program
    {
        static void Main(string[] args)
        {
            Student student1 = new Student() { Name="Tom"};
            Console.WriteLine($"{student1.Name}");
            Function(ref student1);
            Console.WriteLine($"{student1.Name}");
        }
        static void Function(ref Student stu)
        {
            stu = new Student();
            stu.Name = "Tim";
            Console.WriteLine(stu.Name);
        }
    }
    class Student
    {
        public string Name;
    }
结果

引用参数——引用类型:不创建新对象

引用参数——引用类型:不创建新对象
 class Program
    {
        static void Main(string[] args)
        {
            Student student1 = new Student() { Name="Tom"};
            Console.WriteLine($"{student1.Name}");
            Function(ref student1);
            Console.WriteLine($"{student1.Name}");
        }
        static void Function(ref Student stu)
        {
            stu.Name = "Tim";
            Console.WriteLine(stu.Name);
        }
    }
    class Student
    {
        public string Name;
    }
结果

输出参数

1、输出菜蔬并不创建变量的副本
2、方法体内必须要有对输出变量赋值的操作
3、使用out修饰符显式指出——此方法的副作用是通过参数向外输出值
4、从语义来讲——ref是为了改变,out是为了输出

输出参数——值类型

输出参数——值类型
 class Program
    {
        static void Main(string[] args)
        {
            double x = 0;
            bool b = DoubleParser.TryParse("123",out x);
            if (b == true)
            {
                Console.WriteLine(x);
            }
            else {
                Console.WriteLine(x);
            }
        }
        
    }
    class DoubleParser
    {
        public static bool TryParse(string input,out double result)
        {
            try
            {
                result = double.Parse(input);
                return true;
            }
            catch 
            {
                result = 0;
                return false;                
            }
        }
    }
结果

输出参数——引用类型

输出参数——引用类型
 class Program
    {
        static void Main(string[] args)
        {
            Student student = null;
            bool b = StudentFactory.Creat("Tom", 20, out student);
            if (b == true)
            {
                Console.WriteLine($"student.Nmae={student.Name},student.Age={student.Age}");
            }
            
        }  
    }
    class Student
    {
        public string Name { get; set; }
        public int Age { get; set; }
    }
    class StudentFactory
    {
        public static bool Creat(string name, int age, out Student student)
        {
            student = null;
            if (string.IsNullOrEmpty(name))
            {
                return false;
            }
            if (age > 100 && age < 0)
            {
                return false;
            }
           
            student = new Student() { Name = name, Age = age };
            return true;
        }
    }
结果

数组参数

必需是形参列表中的最后一个参数,有params修饰
Sting.Fromat和Sting.split方法就是用到了数组参数

具名参数

参数的位置不受约束

 class Program
    {
        static void Main(string[] args)
        {
            Function(name: "Tom",age:20);
            Function(age: 20,name: "Tom" );
        }
        static void Function(string name, int age)
        {
            Console.WriteLine($"Name={name},Age={age}");
        }
    }

可选参数

参数因为具有默认值而变得“可选”

class Program
    {
        static void Main(string[] args)
        {
            Function();
        }
        static void Function(string name="Tom", int age=20)
        {
            Console.WriteLine($"Name={name},Age={age}");
        }
    }

扩展方法(this参数)

1、扩展方法必须是共有,静态的
2、必须是参数列表中的第一个,由this修饰
3、必须由一个静态类(一般名为SomeTypeExtent)来统一收纳对Some Type类型的扩展方法

class Program
    {
        static void Main(string[] args)
        {
            double x = 3.1415926;
            double y = x.round(5);
            Console.WriteLine(y);
        }  
    }
    static class DoubleExtansion
    {
        static public double round(this double input ,int digits)
        {
            double result = Math.Round(input, digits);
            return result;
        }
    }
各种参数的使用场景
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,530评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,403评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,120评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,770评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,758评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,649评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,021评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,675评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,931评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,751评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,410评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,004评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,969评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,042评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,493评论 2 343