Home > Java > javaTutorial > body text

Detailed introduction to String strings in Java

黄舟
Release: 2017-08-11 09:45:03
Original
1198 people have browsed it

The following editor will bring you an old-fashioned talk about Java String strings (a must-read article). The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor and take a look.

There are two forms of string object creation in Java. One is the literal form, such as String str = "hello";, and the other is to use the new standard. Methods for constructing objects, such as String str = new String("hello");

I won't go into details about this common sense.

First of all, the String class is a final class. Why is it defined in final form?

To put it simply, for such frequently used data types, designers believe that the design is good enough and does not need to be inherited. Otherwise, random inheritance and overwriting may reduce the performance of data types. Program performance.

As the title says, since we are in-depth, let’s dig into the small actions of String at the jvm level.

First explain the form of literal creation:

When a literal form appears in the code to create a string object, the JVM will first The literal is checked, and if there is a reference to a string object with the same content in the string constant pool, this reference is returned. Otherwise, a new string object is created, and then the reference is put into the string constant pool and returned. Quote.

As shown below:


String str1 = "hello" ;
Copy after login

When we first created it, we thought that no object with the content hello existed. The JVM cannot find the existence of a string object with the content hello through the string constant pool, then it will create the string object, then put the reference of the newly created object into the string constant pool, and return the reference to the variable str1

If there is such a piece of code next


String str2 = "hello" ;
Copy after login

Similarly, the JVM still needs to detect this literal. The JVM searches for string constants Pool, it is found that the string object with the content "hello" exists, so the reference of the existing string object is returned to the variable str2. Note that a new string object is not recreated here.

Verify whether str1 and str2 point to the same object, we can use this code


System.out.println(str1 == str2);
Copy after login

The result is true.

The second type is created using new:


##

String str3 = new String("hello");
Copy after login

When we use new to When constructing a string object, a new string object will be created regardless of whether there is a reference to an object with the same content in the string constant pool. So we use the following code to test it,


String str3 = new String("hello");
System.out.println(str1 == str3);
Copy after login

The result is false. Indicates that these two references point to different objects.

intern

For the string object created using new above, if you want to add the reference of this object to the string constant pool, you can Use intern method.

After calling intern, first check whether there is a reference to the object in the string constant pool. If it exists, return the reference to the variable. Otherwise, add the reference and return it to the variable.


String str4 = str3.intern();
System.out.println(str4 == str1);
Copy after login

The result is true.

Difficult questions

Prerequisites?

The prerequisite for the implementation of the string constant pool is that the String object in Java is immutable, which can safely ensure that multiple variables share the same object. If the String object in Java is mutable and a reference operation changes the value of the object, other variables will also be affected. Obviously this is unreasonable.

Reference or object

The reference or object stored in the string constant pool is the most common problem. The string constant pool stores object references, not objects. In Java, objects are created in heap memory. The string constant pool exists in the permanent generation in the heap memory

Advantages and Disadvantages

The advantage of the string constant pool is to reduce the number of strings with the same content creation to save memory space.

If we insist on talking about the disadvantages, it is sacrificing CPU computing time in exchange for space. The CPU calculation time is mainly used to find whether there is a reference to an object with the same content in the string constant pool. However, its internal implementation is HashTable, so the calculation cost is low.

GC recycling?

Because the string constant pool holds references to shared string objects, does this mean that these objects cannot be recycled?

First of all, the objects shared in the question are generally relatively small. As far as I know, this problem did exist in earlier versions, but with the introduction of weak references, this problem should be gone now.

intern use?

关于使用intern的前提就是你清楚自己确实需要使用。比如,我们这里有一份上百万的记录,其中记录的某个值多次为美国加利福尼亚州,我们不想创建上百万条这样的字符串对象,我们可以使用intern只在内存中保留一份即可。

总有例外?

你知道下面的代码,会创建几个字符串对象,在字符串常量池中保存几个引用么?


String test = "a" + "b" + "c";
Copy after login

答案是只创建了一个对象,在常量池中也只保存一个引用。我们使用javap反编译看一下即可得知。

实际上在编译期间,已经将这三个字面量合成了一个。这样做实际上是一种优化,避免了创建多余的字符串对象,也没有发生字符串拼接问题。

The above is the detailed content of Detailed introduction to String strings in Java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!