ViVi Home > 技術文書 > ポインタ入門 > 動的配列クラス > at
int Vector::at(int ix) const { if( ix < 0 || ix >= m_size ) return -1; else return m_data[ix]; }
解説:
前: | 次: