3
您好!有人知道一種方法來實現或模仿以下行爲嗎? (此代碼導致編譯時錯誤)。C++模板專業化
例如,我想僅在派生類中添加特定的模板特化。
struct Base {
template <typename T> void Method(T a) {
T b;
}
template <> void Method<int>(int a) {
float c;
}
};
struct Derived : public Base {
template <> void Method<float>(float a) {
float x;
}
};