你好!有人知道实现或模仿以下行为的方法吗? (此代码导致编译时错误)。
例如,我只想在派生类中添加特定的模板特化。
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;
}
};