C#字符串默认值 1using System;
2class MYTestX
3 {
4class CT
5    {
6    }
7class CO
8    {
9public CT ott;  //默认是null
10public string strx;//默认也是null,⽽不是空串""
11public virtual void Test()
12        {
13            Console.WriteLine("co-testJ");
14        }
15    }
16static 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 }

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。