函数重载遇上默认参数、占位参数函数重载遇上默认参数函数重载遇上占位参数
函数重载遇上默认参数会有二异性,不要使用!!int test01(int*a,int b=10){ cout<<"test——1"<<endl; return 0;}int test01(int*a){ cout<<"test——2"<<endl; return 0;}int main(){ int a = 12;