gpt4 book ai didi

c# - 实例中的值类型在哪里

转载 作者:太空宇宙 更新时间:2023-11-03 13:03:46 25 4
gpt4 key购买 nike

<分区>

众所周知,值类型是存储在栈中的。现在考虑一下:

class test
{
public int Sum { get; set; }
public string Name { get; set; }
}

然后创建一个实例如下:

test t = new test();
t.Sum = 10;
t.Name = "a string";

现在,实例及其属性将如何存储在堆中?因为我们有一个 int 应该存储在堆栈中。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com