java的基本数据类型的包装类是引用类型吗?
巴扎黑
巴扎黑 2017-04-18 10:37:36
0
2
590
巴扎黑
巴扎黑

全部回覆(2)
刘奇

引用JVM規範中的一段,詳情請參閱

For every parameter declared in a method declaration, a new parameter variable is created each time that method is invoked. The new variable is initialized with the corresponding is invoked. The new variable is initialized with the corresponding argument value the mod.

規範中說每次方法調用,方法中的參數都會初始化。

上面

的指向並沒有改變。

Ty80

java 中方法用到的都是值傳遞,即使是引用,傳遞的也是原來引用的拷貝值

方法只能讓參數引用中的屬性改變,而不能改變參數的參考位址

而且你可以看Integer的源碼:

它包裝的值value是被final修飾的,也就是只能被賦值一次,賦值後值不再改變。

另外你可以試試看別的引用類型,看看能不能被改變,例如String

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!