c++类的成员变量的存储位置?
ringa_lee
ringa_lee 2017-04-17 13:11:15
0
4
526
ringa_lee
ringa_lee

ringa_lee

全部回覆(4)
大家讲道理

Test * test_ptr = new Test(); 分配在堆上
Test test; 在堆疊上

迷茫

Test *ptr = new Test;
Test::array在堆上, ptr本身在堆疊上...

巴扎黑

要看類別實例化在哪上

洪涛

都15年了該用c++11了
智慧指標比較安全

//分配在堆上,多了不会爆栈,当然也不能大的太离谱了
auto test_ptr = shared_ptr<Test>(new Test()); 

//在栈上,多了会爆栈的
Test test; 
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板