摘要: 注:以String 类型为例 不允许使用未赋值的变量; //未赋值情况 string str1; string str2 = "%"; str2 = str1 + str2;//错误,使用了为赋值的局部变量str1,编译无法通过。 Console.WriteLine(str2); 结果:(编译时报错) 空对象(null)可以被使用,但不能被"."(点操作); //使用空对象,但不"."点操作 s... 阅读全文
posted @ 2008-11-26 20:13 Peach 阅读(2562) 评论(0) 推荐(0) 编辑