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:
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[]= { 's', 'u' , 'n',',', 'j', 'a', 'v' ,'a'} ; 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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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
Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

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
The most popular open source editor