search
HomeJavajavaTutorialHow to use java's String class

How to use java's String class

1. Understanding String

1. String in JDK

First let’s take a look at the source code of the String class in JDK, which implements many interfaces , you can see that the String class has been modified by final, which means that the String class cannot be inherited, and there is no subclass of String. In this way, all people who use the JDK will use the same String class. If String is allowed to be inherited, Everyone can extend String, and the String used by everyone is not the same version. Two different people use the same method and show different results, which makes it impossible to develop the code.
Inheritance and While method overriding brings flexibility, it also brings many problems with inconsistent behavior of subclasses
How to use java's String class

2. Four ways to create strings

Methods One: Direct assignment (commonly used)
String str = " hello word "

Method two: Generate objects through the construction method
String str1 = new String(" hello word ");

Method 3: Generate objects through character arrays
char[] data = new char[]{'a', 'b','c'};

Method 4: Through static methods of String valueOf(any data type) = >Convert to string (commonly used)
String str2 = String.valueOf(10);
How to use java's String class

3. String literal

Literal: The value written directly is called a literal
10 – > int literal
10.1 --> double literal
true --> boolean literal
" abc " – > String literal
The string literal is actually a string object
String str = “hello word”;
String str2 = str;
At this time, this is both a The literal value of a string is also an object of the string. For the convenience of understanding, let’s draw a picture. At this time, for the convenience of understanding, we temporarily think that it is stored on the heap. In fact, it is stored in the method area.
How to use java's String class
If str2 = "Hello" is set at this time; it has no effect on the output of str at this time, because Hello enclosed by " " is also a string object, indicating that a new space is opened on the heap at this time, and at this time str2 saves the address space of the new object and has no effect on str
How to use java's String class

4. String comparison is equal

When comparing all reference data types for equality, use Equals method comparison, common classes in JDK have overridden the equals method, you can use it directly
The reference data type uses == to compare the address
The following picture shows two references pointing to the same address space. It is related to the constant pool of strings
How to use java's String class
The following figure generates two objects and two address spaces. Using == returns false
How to use java's String class
The comparison size of equals is Case-sensitive comparison
How to use java's String class
The equalsIgnoreCase method is case-insensitive comparison
How to use java's String class

2. String constant pool

1. What is the string constant pool


How to use java's String class## When using the direct assignment method to generate a string object , the JVM will maintain a string constant pool. If the object does not exist in the heap, it will generate a string object and add it to the string constant pool; when continuing to use the direct assignment method to generate a string object, the JVM finds The content pointed to by this reference already exists in the constant pool. At this time, there is no need to create a new string object, but directly reuse the existing object. This is why the three references in the picture above point to the same address.

How to use java's String class When the object is generated for the first time, there is nothing in the constant pool, so a string object is generated and stored in the constant pool. When the object is generated for the second and third time, the JVM finds the constant. If the same content already exists in the pool, no new objects will be generated, pointing directly to the same address space as str1


  1. #

How to use java's String class
The program is executed from right to left. At this time, the right side of the first line of code is a string constant, which is also a string object, so first in the constant pool Create a space in the heap, and then create a new string object and store it. The program executes to the left and encounters the new keyword. At this time, a new object is created and stored in the heap. Then str1 points to the object in the heap, and then points to the second line. After three lines of code, it is found that the object already exists in the constant pool. No new creation is required. When the new keyword is encountered, a new object is created. The memory diagram is as follows:
How to use java's String class

2. Manual pool entry method

The intern method provided by the String class, this is a local method:
How to use java's String class
Calling the intern method will save the object pointed to by the current string reference to the string constant pool. There are two types Situation:
1. If the object already exists in the current constant pool, no new object will be generated, and the String object in the constant pool will be returned
2. If the object does not exist in the current constant pool, then The object is put into the pool and the address after being put into the pool is returned.

1. Take a look at the output of the following lines of code
How to use java's String class
Because the intern method has a return value, str1 only calls the intern method at this time and does not receive the return value. So str1 still points to the object in the heap, str2 points to the object in the constant pool, so false is returned;
How to use java's String class
As long as the return value of calling the intern method is received, true will be returned;
How to use java's String class
At this point, the object pointed to by str1 is manually added to the pool. The object already exists in the pool. Directly let str1 point to the object.
How to use java's String class
2. Take a look at the following lines of code Output
How to use java's String class
When manually entering the pool, there is nothing in the pool, so it is moved directly into the constant pool
How to use java's String class


3. Immutability of strings

1. Why is it immutable

Note: The so-called immutable string refers to the immutability of the content of the string, not that the reference to the string cannot be changed
How to use java's String class
The immutable here refers to "hello", "world", "helloworld", "!!!", and the spliced ​​"helloworld!!!" these already created string objects, once these objects are declared Its content cannot be modified later, but the reference can be changed. One moment it points to hello, another moment it points to helloworld, and now it points to hello world! ! ! , this is all possible
How to use java's String class
A string is just a character array -> char[], the string is actually stored in the character array. Why can't the content of the string be changed? Let's take a look at the source code of the string and find out.
How to use java's String class
We can see that the character array inside String is encapsulated. This character array cannot be accessed from outside the String class, let alone changing the content of the string
String str = " hello ";
How to use java's String class

2. How to modify the string content

1. Destroy the encapsulation of the value array through reflection at runtime
2. Use StringBuilder or StringBuffer instead Class - - is no longer a type
a.StringBuilder: thread-safe, strong performance
b.StringBuffer: thread-safe, poor performance
In addition, the usage of the two classes is exactly the same

If you need to splice strings frequently, use the append method of the StringBuilder class. Only one object is generated here, which will become hello for a while and hello world for a while.
How to use java's String class

3. Specific use of the StringBuilder class

The StringBuilder class and String are two independent classes. The StringBuilder class was created to solve the problem of string splicing.
Mutual conversion between the StringBuilder class and the String class :

1.StringBuilder becomes String class and calls toString method
How to use java's String class

2.String class is transformed into StringBuilder class, use StringBuilder's constructor or append method
How to use java's String class
How to use java's String class
Other commonly used methods:
a. String reversal operation, reverse() provided by sb;
How to use java's String class

b. Delete the specified range of data, delete (int start, int end); delete everything starting from start to end, closed on the left and open on the right.
How to use java's String class

c .Insert operation, insert(int start, various data types): insert from the start index position, the starting index of insertion is start
How to use java's String class

The above is the detailed content of How to use java's String class. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

归纳整理JAVA装饰器模式(实例详解)归纳整理JAVA装饰器模式(实例详解)May 05, 2022 pm 06:48 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool