(旧文重贴)看看这两段代码有什么不同?

public class Test
 {
  public static int test = 0;

  Test()
  {
   test++;
  }

  Test(int i):this()
  {
   test += i;
  }
//test code here:
Console.WriteLine(Test.test);

//第二个代码
 public class Test
 {
  public static int test = 0;

  static Test()
  {
   test++;
  }

  private Test(int i)
  {
   test += i;
  }
//test code here:
Console.WriteLine(Test.test);

//比较清晰的了解了essential.net中讲到的initializar和constructor。

2004年4月15日 13:41

原文地址:https://www.cnblogs.com/juqiang/p/6287.html