函数不要返回栈内存的地址,例如下面代码中的return &a。
#include <iostream>
#include <cstring>
using namespace std;
class A
{
public:
A()
{
name = new char[10];
strcpy(name,"sheng");
cout<<this<<" constructor"<<endl;
}
A(const A &other)
{
this->name