重载 与常量引用
void print(int a,int b,int =0){
cout<<"執(zhí)行三個參數(shù)的"<<endl;
}
void print(int a,int b){
cout<<"執(zhí)行兩個參數(shù)的"<<endl;
}
//以上兩個,在使用函數(shù)print(3,5);//error:ambiguous call to overloaded function
void print(int a){//注意返回類型
cout<<"ni"<<endl;
}
int print(int a){
return a;
}
void main(){
int a=3;
//print(8);注意函數(shù)返回類型不是函數(shù)重載的判斷標準。所以報錯:redefinition
const int f=4;
//int &g=f;不可把常量賦給int型引用
//int &c=3;不可把常量賦給int型引用
int &b=a;
const int &d=3;//可以給常量引用賦以常量。
const int &e=a;
a++;//a可以修改
//e++;但是定義為常量引用的e就不可以修改。
return ;
}
轉(zhuǎn)載于:https://blog.51cto.com/ji123/1918969
超強干貨來襲 云風專訪:近40年碼齡,通宵達旦的技術(shù)人生總結(jié)
- 上一篇: [转载][工具]Secure CRT 自
- 下一篇: 多线程编程: Compare And S