c++-构造函数-虚函数 - 在VS2012中编译C++程序,构造函数中动态申请内存,在析构函数中释放内存出错?
巴扎黑
巴扎黑 2017-04-17 11:47:41
0
1
608

写的程序如下:Person::Person() { std::string *name=new std::string [255]; } Person::~Person() { delete [] name; }
错误如下图:

巴扎黑
巴扎黑

reply all(1)
PHPzhong

nameDeclared in the constructor

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template