• C# 第五章『面向对象』◆第3节:构造函数(方法)


            一、构造函数的定义

            函数就是方法,方法就是函数,一个意思。

            构造函数用来创建对象,并且可以在构造函数中对此对象进行初始化。构造函数具有与类相同的名称,它通常用来初始化对象的数据成员。

            C#中构造函是在创建给定类型的对象时执行的类方法。构造函数是一个特殊的方法,无论什么时候,只要使用new运算符实例化对象,并且不为 new 提供任何参数,就会调用默认构造函数。除非类是静态的,否则C#编译器将为无构造函数的类提供一个公共的默认构造函数,以便该类可以实例化。

            二、构造函数的分类

            构造函数分为:实例构造函数,静态构造函数,私有构造函数

            三、格式

    1. 访问修饰符 类名 (参数列表)
    2. {
    3. 语句块;
    4. }
    5. 创建类的对象是使用“类名 对象名 = new 类名()”的方式来实现的。
    6. public Student()
    7. {
    8. }

             四、构造函数的特征

    • 构造函数可以有重载!
    • 构造函数没有返回值,连void也不能写。
    •  构造函数的名称必须跟类名一样。
    • 构造函数的访问修饰符一般情况下访问修饰符为public(当然也有private)。
    • 构造函数不能直接被调用,必须通过关键字new在创建对象时自动调用。
    • 不带参数的构造函数称为“默认构造函数”。无论何时,只要使用new运算符实例化对象,并且不为new提供任何参数,就会调用默认构造函数。(即创建构造方法(函数)后,在类当中会生成一个一默认的无参数的构造函数,但是当你写个新的构造函数之后,不管是有参数的还是无参数的,那个默认的无参数的构造函数都被干掉了)。
    • 如果一个类中定义了有参构造函数,实例化时需要调用无参构造函数,这时我们就必须定义一个显式无参数构造函数,否则运行会报错。

            五、new关键字

            new帮助我们做了3件事:

    1. 在内存中开辟来一块空间;
    2. 在开辟都空间内创建对象;
    3. 调用对象的构造函数进行初始化对象。
    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace _20220802_1
    6. {
    7. class Program
    8. {
    9. static void Main(string[] args)
    10. {
    11. Book x1 = new Book();//调用无参构造函数
    12. int k = 0;
    13. Book x2 = new Book(k);//调用有参构造函数
    14. Console.WriteLine(k);//为什么这里k=0,因为构造函数没有返回值
    15. Console.ReadKey();
    16. }
    17. }
    18. public class Book
    19. {
    20. public Book()//无参构造函数
    21. {
    22. }
    23. public Book(int i)//有参构造函数
    24. {
    25. i = 2 + 4;
    26. }
    27. }
    28. }

            六、案例

            1、实例化后手动给属性赋值。

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace ConsoleApp1
    6. {
    7. class Program
    8. {
    9. static void Main(string[] args)
    10. {
    11. Student stu = new Student();
    12. stu.Name = "张三";
    13. stu.Age = 18;
    14. stu.Sex = "男";
    15. stu.Score = 99.5;
    16. Console.WriteLine($"姓名:{stu.Name},年龄{stu.Age},性别:{stu.Sex},成绩{stu.Score}");
    17. Console.ReadLine();
    18. }
    19. }
    20. }
    1. using System.Linq;
    2. using System.Text;
    3. namespace ConsoleApp1
    4. {
    5. class Student
    6. {
    7. public string Name { get; set; }
    8. public int Age { get; set; }
    9. public string Sex { get; set; }
    10. public double Score { get; set; }
    11. }
    12. }

    2:实例化时直接把参数放进去自动给属性赋值。

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace ConsoleApp2
    6. {
    7. class Program
    8. {
    9. static void Main(string[] args)
    10. {
    11. Student stu1 = new Student();//无参构造函数的调用
    12. Student stu = new Student("李四", 16, "男", 99.4);
    13. Console.WriteLine("姓名:{0},年龄{1},性别:{2},成绩{3}", stu.Name, stu.Age, stu.Sex, stu.Score);
    14. Console.ReadLine();
    15. }
    16. }
    17. }
    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace ConsoleApp2
    6. {
    7. class Student
    8. {
    9. //有参构造函数
    10. public Student(string name, int age, string sex, double score)
    11. {
    12. this.Name = name;
    13. this.Age = age;
    14. this.Sex = sex;
    15. this.Score = score;
    16. }
    17. public int Age { get; set; }
    18. public string Name { get; set; }
    19. public string Sex { get; set; }
    20. public double Score { get; set; }
    21. //无参构造函数
    22. public Student()
    23. {
    24. Console.WriteLine("无参构造函数被调用");
    25. }
    26. }
    27. }

            3、实例构造函数

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace ConsoleApp10
    6. {
    7. class Program
    8. {
    9. static void Main(string[] args)
    10. {
    11. Student stu1 = new Student();//无参构造函数调用
    12. Student stu2 = new Student(10, "20");
    13. Console.WriteLine($"X={stu1.X}---Y={stu1.Y}");//结果为:X=0---Y=0
    14. Console.WriteLine($"X={stu2.X}---Y={stu2.Y}");//结果为:X=10---Y=20
    15. Console.ReadLine();
    16. }
    17. }
    18. }
    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace ConsoleApp10
    6. {
    7. class Student
    8. {
    9. public int X { get; set; }
    10. public string Y { get; set; }
    11. //无参构造函数
    12. public Student()
    13. {
    14. this.X = 0;
    15. this.Y = "0";
    16. }
    17. //有两个参数构造函数
    18. public Student(int x, string y)
    19. {
    20. this.X = x;
    21. this.Y = y;
    22. }
    23. }
    24. }

            4、构造函数重载

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace _2022_07_19
    6. {
    7. class Student
    8. {
    9. public Student(string name, int age, char gender, int id)
    10. {
    11. this.Name = name;
    12. this.Age = age;
    13. this.Gender = gender;
    14. this.Id = id;
    15. }
    16. public string Name;
    17. public int Age;
    18. public char Gender;
    19. public int Id;
    20. public Student(string name, int age, char gender)
    21. {
    22. this.Name = name;
    23. this.Age = age;
    24. this.Gender = gender;
    25. }
    26. public void SayHello1()
    27. {
    28. Console.WriteLine("我叫{0},我今年{1},我是{2}生,我的学号是{3}。",Name,Age,Gender,Id);
    29. }
    30. public void SayHello2()
    31. {
    32. Console.WriteLine("我叫{0},我今年{1},我是{2}生。", Name, Age, Gender);
    33. }
    34. }
    35. }

     

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace _2022_07_19
    6. {
    7. class Program
    8. {
    9. static void Main(string[] args)
    10. {
    11. Student s01 = new Student("张三", 17, '男', 1001);
    12. s01.SayHello1();
    13. Student s02 = new Student("李四", 19, '女');
    14. s02.SayHello2();
    15. Console.ReadKey();
    16. }
    17. }
    18. }

             5、构造函数与this联合

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace _2022_07_19
    6. {
    7. class Program
    8. {
    9. static void Main(string[] args)
    10. {
    11. Student s01 = new Student("张三", 17, '男', 1001);
    12. s01.SayHello1();
    13. Student s02 = new Student(19, '女');
    14. s02.SayHello2();
    15. Console.ReadKey();
    16. }
    17. }
    18. }
    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace _2022_07_19
    6. {
    7. class Student
    8. {
    9. public Student(string name, int age, char gender, int id)
    10. {
    11. this.Name = name;
    12. this.Age = age;
    13. this.Gender = gender;
    14. this.Id = id;
    15. }
    16. public string Name;
    17. public int Age;
    18. public char Gender;
    19. public int Id;
    20. public Student( int age, char gender) :this("",age,gender,0)
    21. {
    22. //this.Name = name;
    23. //this.Age = age;
    24. //this.Gender = gender;
    25. }
    26. public void SayHello1()
    27. {
    28. Console.WriteLine("我叫{0},我今年{1},我是{2}生,我的学号是{3}。",Name,Age,Gender,Id);
    29. }
    30. public void SayHello2()
    31. {
    32. Console.WriteLine("我叫{0},我今年{1},我是{2}生。", Name, Age, Gender);
    33. }
    34. }
    35. }

             6、静态构造函数

            在C#中,可以为类定义静态构造函数,这种构造函数只执行一次。编写静态构造函数的主要原因是类有一些静态字段或属性,需要在第一次使用类之前,从外部源中初始化这些静态字段或属性。

            在定义静态构造函数时,不能设置访问修饰符,因为其他C#代码从来不会调用它,它只在引用类之前执行一次;另外,静态构造函数不能带任何参数,而且一个类中只能有一个静态构造函数,它只能访问静态成员,不能访问实例成员。

            在类中,静态构造函数和无参数的实例构造函数是可以共存的,因为静态构造函数是在加载类时执行的,而无参数的实例构造函数是在创建类的对象时执行的。

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace _20220802_2
    6. {
    7. class Program
    8. {
    9. static Program()
    10. {
    11. Console.WriteLine("静态构造函数");
    12. }
    13. private Program()
    14. {
    15. Console.WriteLine("实例构造函数");
    16. }
    17. static void Main(string[] args)
    18. {
    19. Program p1 = new Program();
    20. Program p2 = new Program();
    21. Program p3 = new Program();
    22. Console.ReadLine();
    23. }
    24. }
    25. }
    以上代码运行后的结果
    • 静态构造函数不使用访问修饰符或不具有参数。
    • 在创建第一个实例或引用任何静态成员之前,将自动调用静态构造函数以初始化类。
    • 不能直接调用静态构造函数。
    • 无法控制在程序中执行静态构造函数的时间。
    • 静态构造函数的一种典型用法是在类使用日志文件且将构造函数用于将条目写入到此文件中时使用。
    • 静态构造函数对于创建非托管代码的包装类也非常有用,这种情况下构造函数可调用 LoadLibrary 方法。
    • 如果静态构造函数引发异常,运行时将不会再次调用该函数,并且类型在程序运行所在的应用程序域的生存期内将保持未初始化。
    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace ConsoleApp2
    6. {
    7. class Program
    8. {
    9. public static int X = 0;//静态变量
    10. //实例构造函数
    11. public Program()
    12. {
    13. X = 1;
    14. }
    15. //静态构造函数
    16. static Program()
    17. {
    18. X = 2;//第二步,执行静态构造函数
    19. }
    20. //第一步,程序入口Main最先执行,然后执行静态变量public static int X = 0
    21. static void Main(string[] args)
    22. {
    23. Console.WriteLine(X);//结果为2
    24. Program dd = new Program();//第三步,执行构造函数
    25. Console.WriteLine(X);//结果为1
    26. Console.ReadLine();
    27. }
    28. }
    29. }

            调用类的静态函数时的执行顺序:

    • 静态变量==>静态构造函数==>实例构造函数
    • 静态变量==>静态构造函数==>静态函数

            那么调用类的实例函数时的执行顺序则是:

    • 非静态变量==>实例构造函数==>实例函数

            7、私有构造函数

            私有构造函数是一种特殊的实例构造函数。 它通常只在包含静态成员的类中。 如果类具有一个或多个私有构造函数而没有公共构造函数,则在其他类(除嵌套类外)中无法进行实例化。

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace ConsoleApp2
    6. {
    7. class Program
    8. {
    9. int i = 0;
    10. private Program()
    11. {
    12. i = 9;
    13. }
    14. static void Main(string[] args)
    15. {
    16. Program ss = new Program();
    17. Console.WriteLine($"i={ss.i}");//运行结果:i=9
    18. Console.ReadLine();
    19. }
    20. }
    21. class person
    22. {
    23. //Program ddd = new Program();//注释打开会报错,错误信息:不可访问,因为它受保护级别限制。因为私有构造函数无法在类的外面实例化。
    24. }
    25. }

     参考来源:C#构造函数(超详解,建议收藏!!!)_Just Do Its的博客-CSDN博客_c# 构造函数

  • 相关阅读:
    Anaconda安装和配置
    电路设计中的 “热地” 和 “冷地”
    C语言 0 —— 信息在计算机中的表示
    51单片机入门——I2C总线与EEPROM
    黑客(网络安全)技术速成自学
    HTTP协议和HTTPS协议
    分布式服务器架构的优点有哪些?
    设计模式-迭代器模式
    React(2)
    步进电机驱动板在电机运行中起到什么作用?
  • 原文地址:https://blog.csdn.net/qq_45336030/article/details/125832202