他の例もあるかもしれませんが、これは私が見つけたものです。
#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
}
この背後に理解すべき正当な理由や論理はありますか?