次の方法で共有


Windows ランタイムおよびマネージ テンプレート (C++ コンポーネント拡張)

テンプレートは Windows ランタイムまたは共通言語ランタイムの型のプロトタイプを定義できるようにし、異なるテンプレート型のパラメーターを使用して、その型のバリエーションがインスタンス化します。

すべてのランタイム

値または参照型からテンプレートを作成できます。値または参照型の作成についての詳細については、「クラスと構造体 (C++ コンポーネント拡張)」を参照してください。

標準 C++ クラス テンプレートの詳細については、「クラス テンプレート」を参照してください。

Windows ランタイム

(この言語機能には Windows ランタイムのみに適用される特記事項がありません。)

要件

コンパイラ オプション: /ZW

共通言語ランタイム

次のコード例で指定されたマネージ型からクラス テンプレートの作成にはいくつかの制限があります。

要件

コンパイラ オプション: /clr

マネージ型のテンプレート パラメーターのジェネリック型をインスタンス化することはできますが、ジェネリック型のテンプレート パラメーターのマネージ テンプレートをインスタンス化することはできません。これにより、ジェネリック型を実行時に解決するためです。詳細については、「ジェネリックとテンプレート (Visual C++)」を参照してください。

// managed_templates.cpp
// compile with: /clr /c

generic<class T> 
ref class R; 

template<class T> 
ref class Z {
   // Instantiate a generic with a template parameter.
   R<T>^ r;    // OK
};

generic<class T> 
ref class R {
   // Cannot instantiate a template with a generic parameter.
   Z<T>^ z;   // C3231
};

ジェネリック型またはジェネリック関数はマネージ テンプレートに入れ子にすることはできません。

// managed_templates_2.cpp
// compile with: /clr /c

template<class T> public ref class R {
   generic<class T> ref class W {};   // C2959
};

C++/CLI 言語構文を参照アセンブリで定義されたテンプレートにアクセスするリフレクションを使用できます。テンプレートがインスタンス化されなければ、メタデータに出力されません。テンプレートがインスタンス化されれば、参照先メンバー関数だけがメタデータに表示されます。

// managed_templates_3.cpp
// compile with: /clr

// Will not appear in metadata.
template<class T> public ref class A {};

// Will appear in metadata as a specialized type.
template<class T> public ref class R {
public:
   // Test is referenced, will appear in metadata
   void Test() {}

   // Test2 is not referenced, will not appear in metadata
   void Test2() {}
};

// Will appear in metadata.
generic<class T> public ref class G { };

public ref class S { };

int main() {
   R<int>^ r = gcnew R<int>;
   r->Test();
}

クラス テンプレートの部分的な特化または明示的な特殊化クラスのマネージ修飾子を変更できます。

// managed_templates_4.cpp
// compile with: /clr /c

// class template
// ref class
template <class T>
ref class A {};

// partial template specialization
// value type
template <class T>
value class A <T *> {};

// partial template specialization
// interface
template <class T> 
interface class A<T%> {};

// explicit template specialization
// native class
template <>
class A <int> {};

参照

概念

ランタイム プラットフォームのコンポーネントの拡張機能