1. Create objects
For direct string constants in Java programs, the JVM will use a string pool to save them. When a string direct constant is used for the first time, the JVM will put it into the string pool for caching. Under normal circumstances, string objects in the string pool will not be garbage collected. When the program needs to use the string again, the reference variable can directly point to the existing string in the string without re-creating a new string. The string object created using the new operation does not point to the object in the string pool, but you can use the intern() method to point it to the object in the string pool.
public class StringDemo1 { public static void main(String[] args){ String str1 ="abc"; String str2 ="abc"; String str3 =new String("abc"); System.out.println(str1==str2);//true System.out.println(str1==str3);//false } }
FAQ
String str3 =new String("abc");
How many objects are created?
Answer: How many objects have been created by two
String str ="ab"+"cd";
?
Answer: One. "ab" and "cd" are constants placed in the string pool. Therefore, only one abcd string pool is created and the string abcd is saved in the string pool.
public class StringDemo1 { public static void main(String[] args){ String str1 ="ab"; String str2 ="cd"; String str3 ="ab"+"cd";//创建对象并加入字符串池 String str4 =str1+str2; String str5 =str1+"cd"; System.out.println(str3==str4);//false System.out.println(str3==str5);//false } }
It can be seen from the above code: Only String objects created with quotation marks containing text can be added to the string pool. For "+" connection expressions containing new objects created by the new method, the new objects generated by them will not be added. into the string pool.
But there is a situation that needs our attention:
public class StringDemo1 { private final static String str1 ="ab"; private final static String str2 ="cd"; public static void main(String[] args){ String str3 ="ab"+"cd";//创建对象并加入字符串池 String str4 =str1+str2; String str5 =str1+"cd"; System.out.println(str3==str4);//true System.out.println(str3==str5);//true } }
Why is this? The reason is this, for constants. Its value is fixed and therefore can be determined at compile time.
Slightly change the above code and see what happens.
public class StringDemo1 { private final static String str1 ; private final static String str2; static{ str1="ab"; str2="cd"; } public static void main(String[] args){ String str3 ="ab"+"cd";//创建对象并加入字符串池 String str4 =str1+str2; String str5 =str1+"cd"; System.out.println(str3==str4);//false System.out.println(str3==str5);//false } }
Although str1 and str2 are defined as constants, they are assigned values immediately. Before the value of s is calculated, when they are assigned and what value they are assigned are variables, so their properties are the same as variables. Can only be created at runtime.
2. String method
Getting method
•int length()
•char charAt(int index) gets a character based on the position
•int indexOf(int ch) returns ch in the string The position of the first occurrence in
•int indexOf(int ch,int fromIndex) Starting from the position specified by fromIndex, get the position of the first occurrence of ch in the string
•int indexOf(String str)
•int indexOf(String str,int fromIndex)
•int lastIndexOf(int ch)
Judgment method
•boolean contains(String str) Another judgment method: if(str.index(str)!=-1)
•boolean startsWith( String str)
•boolean endsWith(String str)
•bolean isEmpty(String str)
•boolean equals(String str)
•boolean equalsIgnoreCase(String str);
Conversion method
•Convert character array to string
Constructor
1.String(char[] chs)
2.String(char[] chs, offset, count) converts part of the character array into a string.
Static method
1.static String copyValueOf(char[] chs)
2.static String copyValueOf(char[] chs,int offset,int count)
3.static String valueOf(char[] )
4.static String valueOf(char[] chs,int offset,int count)
•Convert a string to a character array
char[] toCharArray
•Convert a character array to a string
•Convert a string to Byte array
byte[] toBytes
Replacement method
String replace(olderStr,newStr)
Cut method
String split(regex)
Get substring [Edit Category]
String subString(begin)
String subString (begin, end) includes the head but not the tail
Convert the string to upper and lower case Android (10)
String toUpperCase()
String toLowerCase()
Remove the spaces at both ends of the string
String trim ()
Compare two strings in natural order
int compareTo(String str)
3.String practice
1. String flipping
public class StringDemo2 { public static void main(String[] args){ String str = "avdkfasjks"; reverseMethod_1(str); } public static void reverseMethod_1(String str){ for(int i=str.length();i>0;i--){ System.out.print(str.charAt(i-1)); } } }
2. Get the largest identical substring
public class StringDemo2 { public static void main(String[] args){ String str1 = "avdkfasjks"; String str2 = "ewavdrtte"; System.out.println(commonMaxSubstring(str1, str2)); } public static String commonMaxSubstring(String str1,String str2){ int len = str1.length(); String str3 = null; outer: //i为子串的长度 for(int i = len;i>0;i--){ //j为子串的脚标 for(int j=0;j<len-i+1;j++){ str3=str1.substring(j,j+i); if(str2.contains(str3)) break outer; } } return str3; } }
That’s it Examples of detailed explanations of Java strings are introduced. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

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

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

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

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

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

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

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

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


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.

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Atom editor mac version download
The most popular open source editor

SublimeText3 Mac version
God-level code editing software (SublimeText3)
