我对模板元编程很陌生,在这种方法中找不到我的思维错误:
template <typename T>
typename T::ReturnType Query(const std::string& Str);
template <>
ResultTypeRowCount Query(const std::string& Str) { return this->queryRowCount(Str); }
ResultTypeRowCount 实现了一个名为 ReturnType 的公共 typedef
谢谢你的阅读