Java高頻面試題分享(四)——方法的引數傳遞機制

karspb發表於2021-09-09

面試題:閱讀下面的程式碼,寫出輸出結果。

class MyData {
    int a = 10;
}
public class MethodArgumentTest {
    public static void main(String[] args) {
        int i = 1;
        String str = "hello";
        Integer num = 200;
        int[] arr = {1, 2, 3, 4, 5};
        MyData my = new MyData();

        change(i, str, num, arr, my);

		System.out.println("i = " + i);
        System.out.println("str = " + str);
        System.out.println("num = " + num);
        System.out.println("arr = " + Arrays.toString(arr));
        System.out.println("my.a = " + my.a);
    }

    public static void change(int j, String s, Integer n, int[] a, MyData m) {
        j += 1;
        s += "world";
        n += 1;
        a[0] += 1;
        m.a += 1;
    }
}

答案:

i = 1
str = hello
num = 200
arr = [2, 2, 3, 4, 5]
my.a = 11

考察的知識點:

方法的引數傳遞機制

方法的引數傳遞機制:

(1)形參是基本資料型別

  • 傳遞資料值

(2)實參是引用資料型別

  • 傳遞地址值
  • 特殊的型別:String、包裝型別等物件不可變性

過程分析:

透過畫記憶體圖,來分析方法執行後的結果。

圖片描述

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2001/viewspace-2820179/,如需轉載,請註明出處,否則將追究法律責任。

相關文章