开发平台(Platform): (Ex: Win10, Linux, ...)
Linux
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
g++
https://gist.github.com/anonymous/f67031c9f2c237589ca2cf4214c86e1a
error: cannot call member function ‘void Derived<T>::toImplement(T&) [with T
= double]’ without object Derived<T>::toImplement(t);
Base<T>::tryUsingImplemented(t); // 这边从子类别函数 call 父类型函数ok
Derived<T>::toImplement(t); //但是从父类别函数 call 子类型函数不行
请问一下这是什么原因?
谢谢