您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)java中的方法重載是,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
方法重載是指一個(gè)類中可以有多個(gè)方法具有相同的名字,但這些方法的參數(shù)必須不同。好處:只需要記住唯一一個(gè)方法名稱,就可以實(shí)現(xiàn)類似的多個(gè)功能。
這里需要注意的是參數(shù)不同需要滿足2個(gè)條件,一個(gè)是參數(shù)的個(gè)數(shù)不同,一個(gè)是參數(shù)個(gè)數(shù)相同,但參數(shù)列表中對(duì)應(yīng)的某個(gè)參數(shù)的類型不同。
方法的重載與下列因素相關(guān):
1、參數(shù)個(gè)數(shù)不同
2、參數(shù)類型不同
3、參數(shù)的多類型順序不同
方法的重載與下列因素?zé)o關(guān):
1、與參數(shù)的名稱無(wú)關(guān)
2、與方法的返回值類型無(wú)關(guān)
例子:
題目要求:比較兩數(shù)據(jù)是否相等。
參數(shù)類型分別為兩個(gè)byte類型、兩個(gè)short類型、兩個(gè)int類型、兩個(gè)long類型。
并在main方法中進(jìn)行測(cè)試
public class CaiNiao{ public static void main(String[] args){ byte a = 10; byte b = 20; System.out.println(isSame(a,b)); System.out.println((isSame(short)20,(short)20)); System.out.println(isSame(11,22)); System.out.println(isSame(10L,10L)); } public static boolean isSame(byte a,byte b){ System.out.println("兩byte參數(shù)的方法執(zhí)行!"); boolean same ; if(a==b){ same = true; }else{ same = false; } return same; } public static boolean isSame(short a,short b){ System.out.println("兩short參數(shù)的方法執(zhí)行!"); boolean same = a == b ?true:false; return same; } public static boolean isSame(int a,int b){ System.out.println("兩int參數(shù)的方法執(zhí)行!"); return a == b:; } public static boolean isSame(long a,long b){ System.out.println("兩long參數(shù)的方法執(zhí)行!"); if (a==b){ return true; } else{ return false; } } }
看完上述內(nèi)容,你們對(duì)java中的方法重載有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。