试图找出这个问题。
第一行是声明类,第二行是创建指针对象但是没有变量类型?是错误吗?所以其余代码无法引用信息?
提前致谢。
//This doesn't work. Why?
MyClass myObject1; //create original
*myObject1.x = 123;
MyClass myObject2;
myObject2 = myObject1;
printf("%d",*myObject2.x); //test the copy
myObject1.~MyClass(); //delete the original
printf("%d",*myObject2.x); //check the copy`