gpt4 book ai didi

c# - 对象类原始类型堆栈和堆

转载 作者:太空狗 更新时间:2023-10-29 20:54:39 26 4
gpt4 key购买 nike

首先,如果听起来太蠢,我深表歉意。但我总是发现自己在问以下问题。

由于对象类是 .Net 中所有类的最终基类,而类是引用类型,因此引用类型存储在堆上,所以任何东西都如何进入堆栈。我知道原始类型存储在堆栈中,这就是我感到困惑的地方。

以int32为例,如果它是一个类,它的基类是object,那么它是一个引用类型,应该在堆上。它如何进入堆栈。

如果它不是一个类,那我们该怎么做

int i = 1;
object obj = i;

因为我不能做类似的事情

int i = 1;
MyClass myObj = i;

编辑

从我得到的答案来看,int 是结构而不是类。仍然令人困惑的是值类型的基类是引用类型(对象),而它的值类型不是引用类型。

出现的另一点是“属于类的值类型不会存储在堆栈中”,我想一切都在类中,甚至是控制台程序中的 Main 方法。对我来说,这意味着所有变量都以某种方式属于一个类?那么它们如何堆叠?

最佳答案

First of all I apologize if it sounds too dumb. but I always find myself asking the following questions.

这些都是很常见的问题。

Since object class is the ultimate base class for all classes in .Net and class is a reference type, reference types are stored on heap so how did anything even get to the stack.

你混淆了很多东西。让我们开始:

  • 值类型的一个实例就是一个值。
  • reference 是一个值。
  • 一个引用引用到一个引用类型的实例。 (或者它为 null,在这种情况下它不指代任何东西。)

OK,现在我们知道有三种东西,其中两种是值。

现在让我们正确地说出你的句子:

The object class is the ultimate base class for all classes in .NET. All instances of classes are instances of reference types. All instances of reference types are stored on heap. How is anything stored on the stack?

既然我们的问题措辞正确,答案就很清楚了。 引用值类型的实例可以进入堆栈。

让我们继续。

I know primitive types get stored on stack and that's where I get confused.

从你的词汇表中消除“原始类型”这个词;这是没有意义的。让我们换个说法:

I know that instances of value types get stored on stack

不,您不知道知道,因为要算作知识,陈述必须是真实的。这种说法是错误的。值存储在变量中。变量要么是长生命周期的,要么是短生命周期的。短期变量进入堆栈。长生命周期变量进入堆。

Take int32 for instance, if its a class and its base class is object, then its a reference type, should be on heap.

Int32 不是一个类。这是一个结构。它不是引用类型。

Still the confusion is how a value type's base class is a reference type (object) and its a value type not a reference type.

玛丽是一位母亲。她是女性。因此,她所有的 child 都是女性吗?

How does it go to stack.

当整数存储在短期变量中时,该整数进入堆栈。

当引用存储在短期变量中时,引用进入堆栈。

值是引用还是值类型的实例无关紧要;重要的是变量存活多长时间

If its not a class then how can we do this

int i = 1;
object obj = i;

好问题。生成一个特殊的类。将其视为:

class BoxedInt 
{
int value;
public BoxedInt(int v) { this.value = v; }
public int Unbox() { return this.value; }
}

那么你的程序片段是:

int i = 1;
object obj = new BoxedInt(i);

然后

int j = (int)obj;

相同
int j = ((BoxedInt)obj).Unbox();

Another point that came up is that "value-types that belong to a class do not get stored on the stack

更好的说法是:引用类型的字段是长生命周期变量。因此它们存储在堆上。

I guess everything is inside a class, even the Main method inside a console Program.

是的,所有代码都在类或结构中。

For me that means all the variable somehow belong to a class?

不,局部变量不是类的成员。

我住在黄色的房子里。里面的东西是不是也都是黄色的?

So How do they go to stack?

普通方法中的局部变量是短暂的,所以它进入堆栈。

只需停止将堆栈视为与存储的数据类型有关的想法。 堆栈与存储的数据类型无关。想想变量。栈是短期变量的地方。堆是存放长生命周期变量的地方。变量的类型无关紧要。

关于c# - 对象类原始类型堆栈和堆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21520774/

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