search
HomeJavaJavagetting StartedDetailed introduction to the commonly used Java class String class

Detailed introduction to the commonly used Java class String class

Commonly used class String

(Recommended tutorial: java introductory tutorial)

The String class represents a string. All string literals in Java programs (such as "abc" ) are implemented as instances of this class.

Strings are constants and their values ​​cannot be changed after they are created. String buffers support mutable strings. Because String objects are immutable, they can be shared.

String source code

public final class String
implements java.io.Serializable, Comparable<String>, CharSequence {
}

String member variables

//String的属性值
private final char value[];
//数组被使用的开始位置
private final int offset;
//String中元素的个数
private final int count;
//String类型的hash值
private int hash; // Default to 0
private static final long serialVersionUID = -6849794470754667710L;
private static final ObjectStreamField[] serialPersistentFields =
  new ObjectStreamField[0];

It can be seen from the source code that the bottom layer of String is maintained using a character array.

Member variables can know that the value of the String class is of final type and cannot be changed, so as long as a value changes, a new String type object will be generated, and storing String data does not necessarily start from the 0th position of the array. It starts with an element, but starts from the element pointed to by offset.

(Video tutorial recommendation: java video tutorial)

How to create a string object

String s1 = "hello" ; 
String s2 = "world" ;
String s3 = "hello" ;
System. out. println(s1 == s3) ; //true

"hello" of S1 and S3 and "hello" of s2 "world" exists in the constant pool of the method area.

As shown in the picture:

Detailed introduction to the commonly used Java class String class

So s1==s3

s1 = new String ("hel1o") ;
s2 = new String ("hel1o") ;
System.out.println(s1 == s2) ; //false
System.out.println (s1.equals (s2) ) ; // true

s1 and s2 get two String objects through new and exist in the heap , the addresses are different. s1 and s2 are two references, so what is compared is the address, s1 != s2.

String's equals rewrites Object's equals. It does not compare addresses like Object, but compares values, so s1.equals (s2) is true.

3.char c[]= { &#39;s&#39;, &#39;u&#39; , &#39;n&#39;,&#39;,&#39;, &#39;j&#39;, &#39;a&#39;, &#39;v&#39; ,&#39;a&#39;} ;
String s4 = new String(c) ;
String s5 = new String(c,4,4) ;
System.out.println(s4) ; //sun java
System.out.println(s5) ; //java

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

Statement
This article is reproduced at:csdn. If there is any infringement, please contact admin@php.cn delete

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

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.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor