本篇內(nèi)容介紹了“Java的構(gòu)造器與方法重載有什么用”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
開陽網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)建站,開陽網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為開陽1000多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務(wù)好的開陽做網(wǎng)站的公司定做!
顯式初始化要求我們在寫程序時就確定初始值,這有時很不方便。我們可以使用構(gòu)造器(constructor)來初始化對象。構(gòu)造器可以初始化數(shù)據(jù)成員,還可以規(guī)定特定的操作。這些操作會在創(chuàng)建對象時自動執(zhí)行。
構(gòu)造器是一個方法。像普通方法一樣,我們在類中定義構(gòu)造器。構(gòu)造器有如下基本特征:
構(gòu)造器的名字和類的名字相同
構(gòu)造器沒有返回值
我們定義Human類的構(gòu)造器:
public class Test { public static void main(String[] args) { Human aPerson = new Human(160); System.out.println(aPerson.getHeight()); } } class Human { /** * constructor */ Human(int h) { this.height = h; System.out.println("I'm born"); } /** * accessor */ int getHeight() { return this.height; } int height; }
上面的程序會打印
I'm born
160
構(gòu)造器可以像普通方法一樣接收參數(shù)列表。這里,構(gòu)造器Human()接收一個整數(shù)作為參數(shù)。在方法的主體中,我們將該整數(shù)參數(shù)賦予給數(shù)據(jù)成員height。構(gòu)造器在對象創(chuàng)建時做了兩件事:
為數(shù)據(jù)成員提供初始值 this.height = h
;
執(zhí)行特定的初始操作 System.out.println("I'm born")
;
這樣,我們就可以在調(diào)用構(gòu)造器時,靈活的設(shè)定初始值,不用像顯示初始化那樣拘束。
構(gòu)造器是如何被調(diào)用的呢?我們在創(chuàng)建類的時候,采用的都是new Human()的方式。實際上,我們就是在調(diào)用Human類的構(gòu)造器。當(dāng)我們沒有定義該方法時,Java會提供一個空白的構(gòu)造器,以便使用new的時候調(diào)用。但當(dāng)我們定義了構(gòu)造器時,在創(chuàng)建對象時,Java會調(diào)用定義了的構(gòu)造器。在調(diào)用時,我們提供了一個參數(shù)160。從最后的運行結(jié)果中也可以看到,對象的height確實被初始化為160。
在方法與數(shù)據(jù)成員中,我們可以看到,如果我們提供顯式初始值,那么數(shù)據(jù)成員就會采用顯式初始值,而不是默認(rèn)初始值。但如果我們既提供顯式初始值,又在構(gòu)造器初始化同一數(shù)據(jù)成員,最終的初始值將由構(gòu)造器決定
。比如下面的例子:
public class Test { public static void main(String[] args) { Human aPerson = new Human(160); System.out.println(aPerson.getHeight()); } } class Human { /** * constructor */ Human(int h) { this.height = h; } /** * accessor */ int getHeight() { return this.height; } int height=170; // explicit initialization }
運行結(jié)果為: 160
對象最終的初始化值與構(gòu)建方法中的值一致。因此:
構(gòu)建方法 > 顯式初始值 > 默認(rèn)初始值
(事實上,所謂的優(yōu)先級與初始化時的執(zhí)行順序有關(guān),我將在以后深入這一點)
一個類中可以定義不止一個構(gòu)造器,比如:
public class Test { public static void main(String[] args) { Human neZha = new Human(150, "shit"); System.out.println(neZha.getHeight()); } } class Human { /** * constructor 1 */ Human(int h) { this.height = h; System.out.println("I'm born"); } /** * constructor 2 */ Human(int h, String s) { this.height = h; System.out.println("Ne Zha: I'm born, " + s); } /** * accessor */ int getHeight() { return this.height; } int height; }
運行結(jié)果:
Ne Zha: I'm born, shit
150
上面定義了兩個構(gòu)造器,名字都是Human。兩個構(gòu)造器有不同的參數(shù)列表。
在使用new創(chuàng)建對象時,Java會根據(jù)提供的參數(shù)
來決定構(gòu)建哪一個構(gòu)造器。比如在構(gòu)建neZha時,我們提供了兩個參數(shù): 整數(shù)150和字符串"shit",這對應(yīng)第二個構(gòu)建方法的參數(shù)列表,所以Java會調(diào)用第二個構(gòu)建方法。
在Java中,Java會同時根據(jù)方法名
和參數(shù)列表
來決定所要調(diào)用的方法,這叫做方法重載(method overloading)
。構(gòu)建方法可以進(jìn)行重載,普通方法也可以重載,比如下面的breath()方法:
public class Test { public static void main(String[] args) { Human aPerson = new Human(); aPerson.breath(10); } } class Human { /** * breath() 1 */ void breath() { System.out.println("hu...hu..."); } /** * breath() 2 */ void breath(int rep) { int i; for(i = 0; i < rep; i++) { System.out.println("lu...lu..."); } } int height; }
運行結(jié)果:
lu...lu...
lu...lu...
lu...lu...
lu...lu...
lu...lu...
lu...lu...
lu...lu...
lu...lu...
lu...lu...
lu...lu...
可以看到,由于在調(diào)用的時候提供了一個參數(shù): 整數(shù)10,所以調(diào)用的是參數(shù)列表與之相符的第二個breath()方法。
constructor特征: 與類同名,無返回值
constructor目的: 初始化,初始操作
方法重載: 方法名 + 參數(shù)列表 -> 實際調(diào)用哪一個方法
“Java的構(gòu)造器與方法重載有什么用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!