search

Home  >  Q&A  >  body text

c++-构造函数-虚函数 - 在VS2012中编译C++程序,构造函数中动态申请内存,在析构函数中释放内存出错?

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

巴扎黑巴扎黑2768 days ago609

reply all(1)I'll reply

  • PHPz

    PHPz2017-04-17 11:49:41

    nameDeclared in the constructor

    reply
    0
  • Cancelreply