JAVA Series -> String class

Outline

    java.lang.String 类代表字符串。Java程序中所有的字符串文字(例如 "abc" )都可以被看作是实现此类的实例。类 String 中包括用于检查各个字符串的方法,比如用于比较字符串,搜索字符串,提取子字符串以及创建具有翻译为大写或小写的所有字符的字符串的副本。

Feature

  1. String constant: The value of the string can not be changed after creation.
String s1 = "abc"; 
s1 += "d"; 
System.out.println(s1); // "abcd" 
// 内存中有"abc","abcd"两个对象,s1从指向"abc",改变指向,指向了"abcd"。
  1. Because String objects are immutable, so they can be shared.
    Here Insert Picture Description
    Implementation of hashcode method, the same results
    Here Insert Picture Description
    : Only a "abc" object is created in memory, while being s1 and s2 share.

  2. "Abc" is equivalent to char [] data = { 'a', 'b', 'c'}.

 String str = "abc"; 
 char data[] = {'a', 'b', 'c'}; 
 String str = new String(data); 
 // String底层是靠字符数组实现的。

PS addresses are not equal

use

View class
java.lang.String: these do not need to import.

View Constructors
public String (): String object initialization newly created, so that it represents an empty character sequence.
public String (char [] value) : the construction of new String parameter by the current character array.
public String (byte [] bytes) : the construction of new String internet by using the default character set for decoding the current byte array parameter.
Configuration example, as follows:

// 无参构造 
String str = new String(); 
// 通过字符数组构造 
char chars[] = {'a', 'b', 'c'}; 
String str2 = new String(chars); 
// 通过字节数组构造 
byte bytes[] = { 97, 98, 99 }; 
String str3 = new String(bytes);

Common method

public boolean equals (Object anObject) :将此字符串与指定对象进行比较。 

public boolean equalsIgnoreCase (String anotherString) :将此字符串与指定对象进行比较,忽略大小写。

public int length () :返回此字符串的长度。 

public String concat (String str) :将指定的字符串连接到该字符串的末尾。 

public char charAt (int index) :返回指定索引处的 char值。 

public int indexOf (String str) :返回指定子字符串第一次出现在该字符串内的索引。 

public String substring (int beginIndex) :返回一个子字符串,从beginIndex开始截取字符串到字符 串结尾。 

public String substring (int beginIndex, int endIndex) :返回一个子字符串,从beginIndex到 endIndex截取字符串。含beginIndex,不含
endIndex。

public char[] toCharArray () :将此字符串转换为新的字符数组。 

public byte[] getBytes () :使用平台的默认字符集将该 String编码转换为新的字节数组。 

public String replace (CharSequence target, CharSequence replacement) :将与target匹配的字符串使 用replacement字符串替换。

public String[] split(String regex) :将此字符串按照给定的regex(规则)拆分为字符串数组。

Exercise

Keyboard input a character string of statistics in the number of uppercase and lowercase letters and numeric characters
Here Insert Picture Description

Published 37 original articles · won praise 24 · views 652

Guess you like

Origin blog.csdn.net/qq_16397653/article/details/103749275