溫馨提示×

溫馨提示×

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

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

Java參數(shù)怎么引用

發(fā)布時(shí)間:2021-12-22 16:29:56 來源:億速云 閱讀:202 作者:iii 欄目:編程語言

這篇文章主要介紹“Java參數(shù)怎么引用”,在日常操作中,相信很多人在Java參數(shù)怎么引用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Java參數(shù)怎么引用”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

1.基本類型

基本類型作為實(shí)參時(shí),該值會(huì)拷貝一份在方法中使用,方法中對參數(shù)的改變不會(huì)影響原來的值;

public class TestString {

public static void main(String[] args) {

// TODO Auto-generated method stub

int i=5;

change(i);

System.out.println(i);

}

private static void change(int i){

i=10;

}

}

輸出:5

2.引用類型

引用類型的值是堆中數(shù)據(jù)所占內(nèi)存的首地址,當(dāng)引用類型作為方法實(shí)參時(shí),編譯器會(huì)在復(fù)制一份該地址在方法中使用,此時(shí)有兩種情況:

1)如果方法改變了引用指向的數(shù)據(jù)的內(nèi)容,則方法外的引用指向的內(nèi)容也會(huì)改變;

2)如果方法將此引用指向了其他的內(nèi)存地址,則方法外該引用執(zhí)行的內(nèi)容不變;

第一種情況:

public class TestString {

public static void main(String[] args) {

// TODO Auto-generated method stub

Test t1=new Test();

changeContent(t1);

System.out.println(t1.s);

}

private static void changeContent(Test t){

t.s="change content";

}

}

class Test{

String s="empty";

}

output:

change content

第二種情況:

public class TestString {

public static void main(String[] args) {

// TODO Auto-generated method stub

Test t1=new Test();

changeReference(t1);

System.out.println(t1.s);

}

private static void changeReference(Test t){

t=new Test();

t.s="changeRefence";

}

}

class Test{

String s="empty";

}

output:

empty

3.當(dāng)string類型作為參數(shù)時(shí),由于string的不可變的性質(zhì),因此當(dāng)方法中改變了string的內(nèi)容時(shí),方法外參數(shù)指向的內(nèi)容仍然不變

public class TestString {

public static void main(String[] args) {

// TODO Auto-generated method stub

String s="old";

change(s);System.out.println(s);

}

private static void change(String s){

s="change string";

}

}

output:

old

到此,關(guān)于“Java參數(shù)怎么引用”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

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

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI