ViVi Home > 技術文書 > ポインタ入門 > 動的配列クラス > resize
void Vector::resize(int sz) { if( sz < 0 ) sz = 0; reserve(sz); m_size = sz; }
解説:
前: | 次: