Nola Log
儲思盆
2017年1月3日 星期二
[C++] 宣告未知大小的陣列
Reference:
http://phorum.study-area.org/index.php?topic=48457.0
使用指標
Example.
int *pt;
要使用時再動態配置記憶體
pt = new int[count];
用完後歸還記憶體
delete []pt;
** 計算陣列大小
int array[] = {1, 2, 3};
int result = sizeof(array)/sizeof(int)
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言