问答详情
源自:5-1 C# 值类型和引用类型

关于string是引用类型

老师说string是引用类型

string str1 = "abcdef";

string str2 = str1;

str2 = "abcd";

Console.WriteLine(str1);

输出的还是“abcdef”呀?


提问者:夏末未夏 2019-12-30 16:20

个回答

  • weixin_慕瓜7185429
    2020-01-12 10:22:58
    已采纳

    我也是懵逼了,可以参考这个https://blog.csdn.net/u011555996/article/details/79203220

  • 夏末未夏
    2020-03-09 11:06:07

    <style>

    div{

        width:30px;

        height:30px;

        border-radius:50%;

        float: left;

    }

    </style>

    <div style="background:red;">测试1</div>

    <div style="background:orange;">测试2</div>

    <div style="background:yellow;">测试3</div>

    <div style="background:green;">测试4</div>

    <div style="background:skyblue;">测试5</div>

    <div style="background:blue;">测试6</div>

    <div style="background:purple;">测试7</div>


  • 慕无忌9375251
    2020-01-05 10:18:47

    你这个逻辑有问题呀    如果你要想让str1输出变成str2   那么应该是str1=str2