是否有可能迫使模板来自某个基类,以便我可以调用基类函数?

template <class T>
void SomeManager::Add(T)
{
    T->CallTsBaseClassFunction();
    //... do other stuff
}

最佳答案

当然,您可以将类型特征与SFINAE结合使用:

#include <type_traits>

template <class T>
typename std::enable_if<std::is_base_of<your_base_class, T>::value, void>::type
SomeManager::Add(T)
{
    T->CallTsBaseClassFunction();
    //... do other stuff
}

尽管我在这里看不到好处。

10-06 04:18