老师说string是引用类型
string str1 = "abcdef";
string str2 = str1;
str2 = "abcd";
Console.WriteLine(str1);
输出的还是“abcdef”呀?
我也是懵逼了,可以参考这个https://blog.csdn.net/u011555996/article/details/79203220
<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>
你这个逻辑有问题呀 如果你要想让str1输出变成str2 那么应该是str1=str2