标签:
1、私有的构造函数
因为该类的构造函数是私有的,因此使用new关键字在外部代码中对该类进行实例化。
1 public class Student 2 3 { 4 5 private string name; 6 7 private Student(string name)//该类的构造方法 8 9 { 10 11 this.name=name; 12 13 } 14 15 }
2、静态构造函数
1 public class Student 2 3 { 4 5 static Student()//静态构造函数 6 7 { 8 9 //code 10 11 } 12 13 }
标签:
原文地址:http://www.cnblogs.com/hwy2014/p/4208305.html