我只是在学习 c++ 的基础知识,并且已经到了关于指针的部分。但是,在尝试为指针的内容分配值时出现错误。有小费吗?
#include <iostream>
class X
{
public:
int * x;
X()
{
int * x = new int;
}
};
int main (int argc, const char * argv[])
{
X test;
*(test.x) = 10;
return 0;
}