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

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

posted @ 2004-04-16 13:32  鞠强  阅读(793)  评论(6编辑  收藏  举报

hello

world