あるクラスをAとして したいことクラスインスタンスの配列 クラスインスタンスのポインタの配列 初期化 = new A[N]; = new A*[N]; してから各ポインタに = new A(); メンバアクセス a[i].func(); a[i]->func(); 破棄delete [] a; 各要素にdelete a[i];してから delete [] a; //http://ppwww.phys.sci.kobe-u.ac.jp/~akusumoto/program/detail.php?d=c/05-pointer/pointer_array #include <iostream> #include <sstream> #include <cstdio> #include <boost/lexical_cast.hpp> using namespace std; using name