這篇文章主要介紹在Java中交換對(duì)象數(shù)據(jù)的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)公司長(zhǎng)期為上1000家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開(kāi)放共贏平臺(tái),與合作伙伴共同營(yíng)造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為咸寧企業(yè)提供專業(yè)的網(wǎng)站建設(shè)、做網(wǎng)站,咸寧網(wǎng)站改版等技術(shù)服務(wù)。擁有10年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開(kāi)發(fā)。
假設(shè)我們有一個(gè)名為“Car”的類,它具有一些屬性。我們創(chuàng)建了Car的兩個(gè)對(duì)象,car1和car2,如何交換car1和car2的數(shù)據(jù)?
一個(gè)簡(jiǎn)單的解決方案是交換成員。例如,如果類Car只有一個(gè)integer(整數(shù))屬性“no”(Car number),我們可以通過(guò)簡(jiǎn)單地交換兩輛車的成員來(lái)交換汽車。
class Car { int no; Car(int no) { this.no = no; } } class Main { public static void swap(Car c1, Car c2) { int temp = c1.no; c1.no = c2.no; c2.no = temp; } public static void main(String[] args) { Car c1 = new Car(1); Car c2 = new Car(2); swap(c1, c2); System.out.println("c1.no = " + c1.no); System.out.println("c2.no = " + c2.no); } }
輸出:
c1.no = 2 c2.no = 1
如果我們不知道Car的成員呢?
上面的解決方案是有效的,因?yàn)槲覀冎繡ar中有一個(gè)成員“no”。如果我們不知道Car的成員或者成員列表太大怎么辦。這是一種非常常見(jiàn)的情況,因?yàn)槭褂闷渌惖念惪赡軣o(wú)法訪問(wèn)其他類的成員。下面的解決方案有效嗎?
class Car { int model, no; Car(int model, int no) { this.model = model; this.no = no; } void print() { System.out.println("no = " + no + ", model = " + model); } } class Main { public static void swap(Car c1, Car c2) { Car temp = c1; c1 = c2; c2 = temp; } public static void main(String[] args) { Car c1 = new Car(101, 1); Car c2 = new Car(202, 2); swap(c1, c2); c1.print(); c2.print(); } }
輸出:
no = 1, model = 101 no = 2, model = 202
從上面的輸出中我們可以看到,沒(méi)有交換對(duì)象。參數(shù)在Java中是通過(guò)值傳遞的。因此,當(dāng)我們將c1和c2傳遞給swap()時(shí),swap()函數(shù)會(huì)創(chuàng)建這些引用的副本。
解決方案是使用Wrapper類如果我們創(chuàng)建一個(gè)包含Car引用的包裝類,我們可以通過(guò)交換Wrapper類的引用來(lái)交換Car。
class Car { int model, no; Car(int model, int no) { this.model = model; this.no = no; } void print() { System.out.println("no = " + no + ", model = " + model); } } class CarWrapper { Car c; CarWrapper(Car c) {this.c = c;} } class Main { public static void swap(CarWrapper cw1, CarWrapper cw2) { Car temp = cw1.c; cw1.c = cw2.c; cw2.c = temp; } public static void main(String[] args) { Car c1 = new Car(101, 1); Car c2 = new Car(202, 2); CarWrapper cw1 = new CarWrapper(c1); CarWrapper cw2 = new CarWrapper(c2); swap(cw1, cw2); cw1.c.print(); cw2.c.print(); } }
輸出:
no = 2, model = 202 no = 1, model = 101
因此,即使user 類無(wú)法訪問(wèn)要交換對(duì)象的類的成員,Wrapper類解決方案仍然有效。
以上是在Java中交換對(duì)象數(shù)據(jù)的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!