溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

在Java中交換對象數(shù)據(jù)的方法

發(fā)布時間:2020-08-20 15:15:33 來源:億速云 閱讀:227 作者:小新 欄目:編程語言

這篇文章主要介紹在Java中交換對象數(shù)據(jù)的方法,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

                                                           假設(shè)我們有一個名為“Car”的類,它具有一些屬性。我們創(chuàng)建了Car的兩個對象,car1和car2,如何交換car1和car2的數(shù)據(jù)?

一個簡單的解決方案是交換成員。例如,如果類Car只有一個integer(整數(shù))屬性“no”(Car number),我們可以通過簡單地交換兩輛車的成員來交換汽車。

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的成員呢?

上面的解決方案是有效的,因為我們知道Car中有一個成員“no”。如果我們不知道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 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

從上面的輸出中我們可以看到,沒有交換對象。參數(shù)在Java中是通過值傳遞的。因此,當(dāng)我們將c1和c2傳遞給swap()時,swap()函數(shù)會創(chuàng)建這些引用的副本。

解決方案是使用Wrapper類如果我們創(chuàng)建一個包含Car引用的包裝類,我們可以通過交換Wrapper類的引用來交換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 類無法訪問要交換對象的類的成員,Wrapper類解決方案仍然有效。

以上是在Java中交換對象數(shù)據(jù)的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(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)容。

AI