您好,登錄后才能下訂單哦!
C++中函數(shù)重載實例詳解
函數(shù)重載:
1、具有相同的名稱,執(zhí)行基本相同的操作,但是使用不同的參數(shù)列表。
2、函數(shù)具有多態(tài)性。
3、編譯器通過調(diào)用時參數(shù)的個數(shù)和類型確定調(diào)用重載函數(shù)的哪個定義。
4、只有對不同的數(shù)據(jù)集完成基本相同任務(wù)的函數(shù)才應(yīng)重載。
函數(shù)重載的優(yōu) 點
1、不必使用不同的函數(shù)名
2、有助于理解和調(diào)試代碼
3、易于維護(hù)代碼
接下來直接上代碼:
#include <iostream> using namespace std ; void say_hello(void) { cout << "this is hello" << endl ; } //數(shù)據(jù)類型不同的重載 void say_hello(int a = 100) { cout << "this is hotdog" << endl ; } int say_hello(double a ) { cout << "this is hotpig:" << a << endl ; } //參數(shù)個數(shù)不同的重載 int say_hello(int a, int b, int c) { cout << "a+b+c = " << a+b+c << endl ; } int main(void) { say_hello(100); say_hello(11.11); say_hello(1 , 2 , 3); return 0 ; }</span>
執(zhí)行結(jié)果:
this is hotdog
this is hotpig:11.11
a+b+c = 6
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。