templatevoid fun(A a){}template<>void fun(int a){/*....*/}//显式具体化void main(){ float a=0; fun(a);//显式实例化}