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

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

巴扎黑
巴扎黑

reply all (1)
PHPzhong

name在构造函数里申明的

    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!