gpt4 book ai didi

c++ - 为什么运行时堆栈对象的实例变量与堆对象不同?

转载 作者:行者123 更新时间:2023-11-28 07:32:38 26 4
gpt4 key购买 nike

可能还有其他例子,但这是我刚刚遇到的一个。

#include <iostream>
using namespace std;

class Student
{
public:
int x;
};

int main()
{
Student rts;
Student* heap = new Student;

cout << rts.x << endl; // prints out random integer
cout << heap->x << endl; // prints out 0
}

这背后有什么好的理由或逻辑可以理解吗?

最佳答案

在这种情况下,我认为堆已经在分配的内存中归零只是巧合。

您可以在 this similar question 的答案中阅读更多内容

关于c++ - 为什么运行时堆栈对象的实例变量与堆对象不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17365154/

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