Java中的String类
- Java程序中所有的字符串文字(例如
"abc"
)都可以被看作是实现此类的实例。 - String类中包括用于检查各个字符串的方法,比如用于比较字符串,搜索字符串,提取子字符串以及创建具有翻译为大写或小写的所有字符的字符串的副本。
1、 String类的特点
字符串不变:字符串的值在创建后不能被更改。
String s1 = "a"; String s2 = "b"; s1 += s2; System.out.println(s1); //"ab" //内存中有"a"、"b"、"ab"三个对象,但s1不再指向"a",而指向"ab"。
因为String对象是不可变的,所以它们可以被共享。
String s1 = "abc"; String s2 = "abc"; System.out.println(System.identityHashCode(s1)); System.out.println(System.identityHashCode(s2)); System.out.println(System.identityHashCode("abc")); //输出的内存地址值一样 // 内存中只有一个"abc"对象被创建,同时被s1和s2共享。
"abc"
等效于char[] data={ 'a' , 'b' , 'c' }
。String str = "abc"; 相当于 char data[] = {'a','b','c'}; String str = new String(data);
- String底层是由字符数组实现的。
2、 String类的构造方法
public String()
:初始化新创建的 String对象,以使其表示空字符序列。public String(char[] value)
:通过当前参数中的字符数组来构造新的String。public String(byte[] bytes)
:通过使用平台的默认字符集解码当前参数中的字节数组来构造新的String。
构造举例:
// 无参构造
String str = new String();
// 通过字符数组构造
char chars[] = {'a', 'b', 'c'};
String str2 = new String(chars);
// 通过字节数组构造
byte bytes[] = { 97, 98, 99 };
String str3 = new String(bytes);
3、 String类的常用方法
判断类方法:
public boolean equals (Object anObject)
:将此字符串与指定对象进行比较。public boolean equalsIgnoreCase (String anotherString)
:将此字符串与指定对象进行比较,忽略大小
写。方法使用举例:
String s1 = “qaq”;
String s2 = “qaq”;
String s3 = “QAQ”;// boolean equals(Object obj):比较字符串的内容是否相同
System.out.println(s1.equals(s2)); // true
System.out.println(s1.equals(s3)); // false
System.out.println(“‐‐‐‐‐‐‐‐‐‐‐”);//boolean equalsIgnoreCase(String str):比较字符串的内容是否相同,[忽略大小写]
System.out.println(s1.equalsIgnoreCase(s2)); // true
System.out.println(s1.equalsIgnoreCase(s3)); // true
字符串操作方法:
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 String[] split(String regex)
:将此字符串按照给定的regex(规则)拆分为字符串数组方法使用举例:
String s = "wu wu wu"; // int length():获取字符串的长度,其实也就是字符个数 System.out.println(s.length());//8 System.out.println("‐‐‐‐‐‐‐‐"); // String concat (String str):将将指定的字符串连接到该字符串的末尾. String s1 = "QWQ"; String s2 = s1.concat("-QAQ"); System.out.println(s2);// QWQ-QAQ // char charAt(int index):获取指定索引处的字符 System.out.println(s2.charAt(0));//Q System.out.println(s2.charAt(1));//W System.out.println("‐‐‐‐‐‐‐‐"); // int indexOf(String str):获取str在字符串对象中第一次出现的索引,没有返回‐1 System.out.println(s2.indexOf("q")); //-1 System.out.println(s2.indexOf("QWQ")); //0 System.out.println(s2.indexOf("-")); //3 System.out.println("‐‐‐‐‐‐‐‐"); // String substring(int start):从start开始截取字符串到字符串结尾 System.out.println(s2.substring(0)); //QWQ-QAQ System.out.println(s2.substring(4)); //QAQ System.out.println("‐‐‐‐‐‐‐‐"); // String substring(int start,int end):从start到end截取字符串。含start,不含end。(end不能大于数组长度,否则运行报错) System.out.println(s2.substring(4,6)); //QA System.out.println(s2.substring(0, s.length()));//QWQ-QAQ System.out.println(s2.substring(4,8)); //报错StringIndexOutOfBoundsException begin 4, end 8, length 7
转换功能的方法
public char[] toCharArray ()
:将此字符串转换为新的字符数组。public byte[] getBytes ()
:使用平台的默认字符集将该 String编码转换为新的字节数组。public String replace (CharSequence target, CharSequence replacement)
:将与target匹配的字符串使用replacement字符串替换。
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 1401362462@qq.com