intmain(int,char**) { inta = 10; constint& b = Get<int>(a); } 2. 当使用带*指针类型的话,报错 error C2440: “初始化”: 无法从“const T”转换为“const Player *&” [build] with [build] [ [build] T=Player * [build] ] 看代码21行,用Player* const& 接就可以正常编译通过,因为...