代码改变世界

随笔档案-2011年05月

初始化那些事儿

2011-05-27 11:03 by MichaelYin, 1862 阅读, 收藏,
摘要: 先来看看这段代码 class Program { static void Main(string[] args) { Circle objTest = new Circle(); Console.ReadLine(); } } public class Print { public Print(String text) { Console.WriteLine(text); } } public class Shape { //静态字段 static Print staticSbj = new Print("1"); //对象级别的变量 Print obj = new Pri 阅读全文