关于string是引用类型
老师说string是引用类型
string str1 = "abcdef";
string str2 = str1;
str2 = "abcd";
Console.WriteLine(str1);
输出的还是“abcdef”呀?
老师说string是引用类型
string str1 = "abcdef";
string str2 = str1;
str2 = "abcd";
Console.WriteLine(str1);
输出的还是“abcdef”呀?
2019-12-30
<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>
举报