首页 > 问答 > 正文
大家讲道理2017-04-17 13:13:15
Test * test_ptr = new Test(); 分配在堆上Test test; 在栈上
迷茫2017-04-17 13:13:15
Test *ptr = new Test;Test::array在堆上, ptr本身在栈上...
巴扎黑2017-04-17 13:13:15
要看类实例化在哪上
PHP中文网2017-04-17 13:13:15
都15年了该用c++11了智能指针更安全
//分配在堆上,多了不会爆栈,当然也不能大的太离谱了 auto test_ptr = shared_ptr<Test>(new Test()); //在栈上,多了会爆栈的 Test test;