ヒープ領域に割り当てられた新しい領域ごとに、最近作成されたポインタのベクトルの要素が NULL を指していることを確認するにはどうすればよいですか?
Ex:
vector < Sometype* >
vector ----------------------
| | | | ... |
----------------------
new element is pushed back but no available area so double space
index x x+1 y
vector -------------------------------------------
| | | | ... | | | ... |
-------------------------------------------
^^^^^^^^^^^^^^^^^^^^^
recently created
x, x+1, ... y all points to the NULL
最近作成したパーツの各スペースを NULL にしたいですか?