假设我们有以下基类和派生类:#include#includeclassCar{public:voidDrive(){std::cout..还有以下模板函数:templatevoidFunction(void(T::*m1)(void),void(V::*m2)(void)){std::cout为什么使用GCC编译:intmain(intargc,char**argv){void(Porsche::*ptr)(void)=&Porsche::Drive;Function(ptr,ptr);return0;}...但不是这个?intmain(intargc,char**argv){void