格納しているオブジェクトのタイプを示すコンストラクターを作成しようとしています。これを達成する簡単な方法はありますか?私はdecltypeを見ていました。
template <typename T>
MyVector<T>::MyVector(int setCap)
{
m_ptr = new T[setCap];
m_size = 0;
m_capacity = setCap;
string typeSet = decltype(T);
cout << "New MyVector of type " << typeSet << " created\n";
}