今天就跟大家聊聊有關java中的方法重載是,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)專業(yè)提供成都主機托管四川主機托管成都服務器托管四川服務器托管,支持按月付款!我們的承諾:貴族品質(zhì)、平民價格,機房位于中國電信/網(wǎng)通/移動機房,服務器托管機柜服務有保障!方法重載是指一個類中可以有多個方法具有相同的名字,但這些方法的參數(shù)必須不同。好處:只需要記住唯一一個方法名稱,就可以實現(xiàn)類似的多個功能。
這里需要注意的是參數(shù)不同需要滿足2個條件,一個是參數(shù)的個數(shù)不同,一個是參數(shù)個數(shù)相同,但參數(shù)列表中對應的某個參數(shù)的類型不同。
方法的重載與下列因素相關:
1、參數(shù)個數(shù)不同
2、參數(shù)類型不同
3、參數(shù)的多類型順序不同
方法的重載與下列因素無關:
1、與參數(shù)的名稱無關
2、與方法的返回值類型無關
例子:
題目要求:比較兩數(shù)據(jù)是否相等。
參數(shù)類型分別為兩個byte類型、兩個short類型、兩個int類型、兩個long類型。
并在main方法中進行測試
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)容,你們對java中的方法重載有進一步的了解嗎?如果還想了解更多知識或者相關內(nèi)容,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。