GCC不能推導出參數,這個 '簡單' 的功能。有什麼方法可以幫助編譯器一點點嗎?從GCC 4.7.1
template<int a> struct A
{
template<int b> struct B
{
};
};
template<int a, int b> void test(typename A<a>::template B<b> param) { }
int main()
{
A<1>::B<2> b;
test<1,2>(b); // works
test(b); // doesn't work
}
錯誤消息:
test.cpp: In function 'int main()':
test.cpp:15:8: error: no matching function for call to 'test(A<1>::B<2>&)'
test.cpp:15:8: note: candidate is:
test.cpp:8:29: note: template<int a, int b> void test(typename A<a>::B<b>)
test.cpp:8:29: note: template argument deduction/substitution failed:
test.cpp:15:8: note: couldn't deduce template parameter 'a'
@BoPersson:我同意這是密切相關的,但因爲這個問題涉及到嵌套模板,答案只要不工作。 –
@BoPersson:我的錯。具有該功能是一個朋友模板功能確實有效。在某些情況下,這可能是更好的解決方案。 –