2015-06-10 97 views
1

我有一個模板類,具有各種模板功能。其中一個需要超載(幾次)。雙模板功能過載失敗

基本上 - 如果我的課不會是一個模板,這將是我的功能(S):

class OtherClass 
{ 
public: 
    template<class T> T foo(T &t, const std::string &trash); 
}; 

template<class T> 
T OtherClass::foo(T &t, const std::string &trash) 
{ 
    return t; //... 
} 

template<> 
std::wstring OtherClass::foo<std::wstring>(std::wstring &w, const std::string &trash) 
{ 
    return w; //... 
} 

此:

int main(...) 
{ 
    int i = 0; 
    std::wstring w; 

    OtherClass o; 
    i = o.foo(i, std::string("")); 
    w = o.foo(w, std::string("")); 
} 

模板類看起來像:

template<class MStr> 
class OtherClass 
{ 
public: 
    template<class TVal> TVal foo(TVal &t, const MStr &trash); 
}; 

//Which leads to the function definition 

template<class MStr> 
template<class TVal> 
TVal OtherClass<MStr>::foo(TVal &t, const MStr &trash) 
{ 
    return t; //... 
} 

,我想吃些什麼......在
C2768: illegal use of explicit template arguments

C2244: unable to match function definition

1>...\test\main.cpp(74): error C2768: 'OtherClass<MStr>::foo' : illegal use of explicit template arguments 
1>...\test\main.cpp(74): error C2768: 'OtherClass<MStr>::foo' : illegal use of explicit template arguments 
1>...\test\main.cpp(74): error C2244: 'OtherClass<MStr>::foo' : unable to match function definition to an existing declaration 
1>   definition 
1>   'int OtherClass<MStr>::foo<int>(int &,const MStr &)' 
1>   existing declarations 
1>   'TVal OtherClass<MStr>::foo(TVal &,const MStr &)' 
1> 
1>Build FAILED. 

,我一直測試的土地(INT爲例)

template<class MStr> 
template<> 
int OtherClass<MStr>::foo<int>(int &t, const MStr &trash) 
{ 
    return t; //... 
} 

歡迎,並在Google和Stackoverflow中尋找數小時......迄今爲止最好的答案/問題,似乎並不適用於我this.

問:有沒有人能指出我正確的方向,或者有一個解決方案,以解決這個問題?

回答

2

一個迴避這個問題的方法是隻聲明int版本爲過載,而不是一個模板特:

template<class MStr> 
class OtherClass 
{ 
public: 
    template<class TVal> TVal foo(TVal &t, const MStr &trash); 
    int foo(int &t, const MStr &trash); 
}; 

然後定義爲:

template<class MStr> 
int OtherClass<MStr>::foo(int &t, const MStr &trash) 
{ 
    return t; //... 
} 

這不,如果特別漂亮你有許多重載情況,但它可能會擊敗任何其他解決方案。

+0

是的......我已經用'bool'完成了,它不是很漂亮,但我想我會繼續這樣...然後... – Blacktempel