任意の型の配列でpData
あるmember を持つクラス テンプレートがあるとします。AxB
T
template <class T> class X{
public:
int A;
int B;
T** pData;
X(int a,int b);
~X();
void print(); //function which prints pData to screen
};
template<class T>X<T>::X(int a, int b){ //constructor
A = a;
B = b;
pData = new T*[A];
for(int i=0;i<A;i++)
pData[i]= new T[B];
//Fill pData with something of type T
}
int main(){
//...
std::cout<<"Give the primitive type of the array"<<std::endl;
std::cin>>type;
if(type=="int"){
X<int> XArray(a,b);
} else if(type=="char"){
X<char> Xarray(a,b);
} else {
std::cout<<"Not a valid primitive type!";
} // can be many more if statements.
Xarray.print() //this doesn't work, as Xarray is out of scope.
}
インスタンス Xarray は if ステートメント内で構築されるため、他の場所では使用できません。if ステートメントの前にポインターを作成しようとしましたが、その時点でポインターの型が不明であるため、成功しませんでした。
この種の問題に対処する適切な方法は何でしょうか?