在this question我失敗問到如何使用不同的PIMPL實現依賴於一個模板參數實現。C++ PIMPL方法:根據模板參數
也許這個例子ilustrates好什麼,我試圖做的:
#include <iostream>
template< int N, typename T >
struct B
{
B() : c(new C<N>)
{}
template< int M >
struct C;
C<N> *c;
};
template< int N, typename T >
template< int M >
struct B< N, T >::C
{
int a[M];
};
// version 1 that doesn't work
template< int N, typename T >
template< >
struct B< N, T >::C<0>
{
int a;
};
// version 2 that doesn't work
template< typename T >
template< int M >
struct B< 0, T >::C
{
int a;
};
int main()
{
B< 0, float > b0;
B< 1, int > b1;
std::cout << "b0 = " << sizeof(b0.c->a) << std::endl;
std::cout << "b1 = " << sizeof(b1.c->a) << std::endl;
}
,如果我嘗試專門的結構C(上面沒有編譯)
所以還是失敗,它是可能做什麼?
我知道周圍的工作是這樣的:
template< int M >
struct D
{
int a[M];
};
template< >
struct D<0>
{
int a;
};
template< int N, typename T >
template< int M >
struct B< N, T >::C
{
D<M> helper;
};
,但如果可能的話,我想,以避免它
是否'乙中:C 的真正定義'使用'N'和/或'T'呢?如果不是,爲什麼要在類模板'B'的一員? –
aschepler
2011-03-24 20:46:24
@aschepler是,它使用了,但這個例子只是簡化了什麼FCD代表問題 – 2011-03-24 21:16:16