テンプレートクラス内の静的メンバを共有化するには
下記のようにテンプレートクラス内で静的変数を宣言すると、
テンプレートのインスタンス毎に実体が分かれてしまいます。
クラス内の定義で共有化するようには書けないのでしょうか?
c++
1template <class T> 2class hoge 3{ 4public: 5 static int x[4]; 6}; 7template<class T> 8int hoge<T>::x[4];
c++
1#include <iostream> 2using namespace std; 3int main(void) { 4 hoge<int> a; 5 a.x[0] = 10; 6 hoge<double> b; 7 b.x[0] = 20; 8 hoge<int> c; 9 c.x[0] = 11; 10 11 cout << "hoge<int>:" << a.x[0] << endl; 12 cout << "hoge<double>:" << b.x[0] << endl; 13}
出力結果
c++
1hoge<int>:11 2hoge<double>:20
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/21 06:19