在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1 using System; 2 class MYTestX 3 { 4 class CT 5 { 6 } 7 class CO 8 { 9 public CT ott; //默认是null 10 public string strx;//默认也是null,而不是空串"" 11 public virtual void Test() 12 { 13 Console.WriteLine("co-testJ"); 14 } 15 } 16 static void Main(string[] args) 17 { 18 CO oo = new CO(); 19 CO ot = null; 20 21 Console.WriteLine(oo.strx + "ttt"); 22 Console.WriteLine(null + "ttt"); //null可以与字符串连接,不会出现异常 23 } 24 }
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论