我沒有得到部分模板專業化。 我的類看起來是這樣的:C++:部分模板專業化
template<typename tVector, int A>
class DaubechiesWavelet : public AbstractWavelet<tVector> { // line 14
public:
static inline const tVector waveletCoeff() {
tVector result(2*A);
tVector sc = scalingCoeff();
for(int i = 0; i < 2*A; ++i) {
result(i) = pow(-1, i) * sc(2*A - 1 - i);
}
return result;
}
static inline const tVector& scalingCoeff();
};
template<typename tVector>
inline const tVector& DaubechiesWavelet<tVector, 1>::scalingCoeff() { // line 30
return tVector({ 1, 1 });
}
錯誤gcc的輸出是:
line 30: error: invalid use of incomplete type ‘class numerics::wavelets::DaubechiesWavelet<tVector, 1>’
line 14: error: declaration of ‘class numerics::wavelets::DaubechiesWavelet<tVector, 1>’
我試過幾種解決方案,但沒有奏效。 有人對我有暗示嗎?
'result(i)'?這不應該是'結果[我]'而是? – 6502 2010-07-09 20:21:29
我使用boost的ublas,所以你可以使用()運算符 – Manuel 2010-07-09 20:39:56