Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does java prove that strings are immutable

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces java how to prove that the string is immutable, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor take you to understand it.

How to prove that a string is immutable

I've written two articles about the immutability of strings, and I'm going to throw up at the end of it. But there will still be some students do not understand, after a while, someone privately believe me, I have to put the previous article in the favorites, when asked, I will send him the link.

There are many factors causing this confusion, for example, is Java value passing or reference passing? What is a string constant pool?

This time I have to talk about it again. Although I am bored, I still have to prove it.

Public class StringImmutabilityTest {public static void main (String [] args) {String S1 = "Silent King II"; String S2 = S1; System.out.println (S1 = = S2); S1 = "Silent King III"; System.out.println (S1 = = S2); System.out.println (S2);}}

The output is as follows:

True false Silent King II

1) String S1 = "Silent King II". Java creates an object with the character "Silent King II" in the string constant pool and assigns the address reference to S1.

2) String S2 = S1 Magazine S2 and S1 point to the same address reference-the "Silent King II" in the constant pool.

Therefore, S1 = = S2 is true at this time.

3) S1 = "Silent King 3", Java creates an object of the string "Silent King 3" in the string constant pool and assigns the address reference to S1, but S2 still points to the address reference of the character object of "Silent King II".

Therefore, at this time S1 = = S2 is the output of false,s2 as "Silent King II", which proves that the string is immutable.

Thank you for reading this article carefully. I hope the article "how to prove that a string is immutable" shared by the editor will be helpful to everyone. At the same time, I also hope that you will support and follow the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report