2
template<unsigned number>
struct A
{
template<class T>
static void Fun()
{}
};
template<>
struct A<1>
{
template<class T>
static void Fun()
{
/* some code here. */
}
};
而且要專注一個< 1> ::樂()
template<>
template<>
void A<1>::Fun<int>()
{
/* some code here. */
}
似乎並沒有工作。怎麼做?謝謝。
燦爛!非常感謝! – user1899020
@ user1899020:很高興幫助:) –