3
我會很感激幫助搞清楚一個模板參數是什麼這個問題的問世在我的代碼,我已經減少了以下事情:錯誤:類模板部分特例包含無法推斷
typedef unsigned short ushort;
template<typename T = ushort*>
struct Foo
{
};
// Specialization -- works when not a specialization
template<
template<typename,typename> class Container ,
template<typename , template<typename,typename> class> class MetaFunction
>
struct Foo<Container<ushort,typename MetaFunction<ushort,Container>::Type> >
{
//typedef Container<ushort,typename MetaFunction<ushort,Container>::Type> TestType; // OK
};
int main()
{
}
在編譯時(GCC 5.4.0),我得到的錯誤:
Test.cpp:14:8: error: template parameters not deducible in partial specialization:
struct Foo<Container<ushort,typename MetaFunction<ushort,Container>::Type> >
^
Test.cpp:14:8: note: ‘template<class, template<class, class> class<template-parameter-2-2> > class MetaFunction’
奇怪的是,爭論Container<ushort,typename MetaFunction<ushort,Container>::Type>
向專業化似乎是有效的。