有关字符串问题

字符串的三大特点:

1.字符串池

2.字符串留用

3.字符串不可变

-----------------------------------------------------------------------------------------------------------------------\

1.有关字符串的处理问题

            string str = "hello world";
            str = str.ToUpper();
            Console.Write(str);   //输出结果为HELLO WORLD

2.有关字符串的留用

      string word1 = "你";
            string word2 = "好";
            string word3 = "美";
            //string word4 = word1 + word2 + word3;
            //string word5 = word1 + word2 + word3;
            //字符串留用
            string word4 =string.Intern(word1 + word2 + word3);
            string word5 =string.IsInterned(word1 + word2 + word3);

3.字符串池

 //当两个字符串常量一样时,内存中只开辟了一块内存空间存储一个常量。
            string name = "a";
            string name1 = "a";
            name = "b";
            Console.WriteLine(name1);


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值