字符串相關的類:Stringjava
String類:表明字符串,Java 程序中的全部字符串字面值(如 "abc" )都做 爲此類的實例實現。面試
public void test1(){ String s1 = "abc";//字面量的方式 String s2 = "abc"; System.out.println(s1 == s2);// ture , 比較的是s1和s2的地址值 s1 = "hello"; System.out.println(s1); // hello System.out.println(s2); // abc String s3 = "abc"; s3 += "def"; System.out.println(s3); // abcdef System.out.println(s2 == s3); // false , 此時的s2和s3的地址值已經不一樣 String s4 = "abc"; String s5 = s4.replace('a' , 'd'); System.out.println(s4); // abc System.out.println(s5); // dbc }
public void test2(){ String s1 = "Java"; String s2 = "Java"; String s3 = new String("Java"); String s4 = new String("Java"); System.out.println(s1 == s2); // true System.out.println(s1 == s3); // false System.out.println(s1 == s4); // false System.out.println(s3 == s4); // false Person p1 = new Person("Tom",18); Person p2 = new Person("Tom",18); System.out.println(p1.name.equals(p2.name)); // true , String重寫了equals方法,此時比較的就是內容了 System.out.println(p1.name == p2.name); // true , 兩個對象裏面仍是字面量定義的方式賦值 }
注:兩個對象裏面仍是字面量定義的方式賦值正則表達式
面試題數組
String s = new String("abc")方式建立對象,在內存中建立了幾個對象?
安全
兩個,一個是堆空間的new的結構,一個是char[]對應的常量池中的數據 "abc"app
重點:源碼分析
public void test3(){ String s1 = "Java"; String s2 = "Python"; String s3 = "JavaPython"; String s4 = "Java" + "Python"; String s5 = s1 + "Python"; String s6 = s1 + s2; System.out.println(s3 == s4); // true System.out.println(s3 == s5); // false System.out.println(s4 == s5); // false System.out.println(s3 == s6); // false String s7 = s5.intern(); System.out.println(s7 == s3); //true }
特別注意:當 final String s1 = 「java」,這個也就至關於一個常量了測試
good and bestui
這裏能夠參考以前的Java的值傳遞this
若在scr前面加一個this,狀況會是怎樣?
package com.atguigui.exer; /** * @author MD * @create 2020-07-12 9:41 */ public class StringTest { String str = new String("good"); char[] ch = {'t','e','s','t'}; public void change(String str, char ch[]){ this.str = "test ok"; ch[0] = 'b'; } public static void main(String[] args) { StringTest ex = new StringTest(); ex.change(ex.str,ex.ch); System.out.println(ex.str); System.out.println(ex.ch); // test ok // best } }
注意String的不可變性,原字符不變
String ---> 基本數據類型、包裝類
基本數據類型、包裝類 --- >字符串
public void test2(){ String str = "123"; int num = Integer.parseInt(str); String str1 = String.valueOf(num); }
String ---> char[] : 調用String的toCharArray()
char[] ---> String: 調用String的構造器
public void test3(){ String str = "asdf123"; char[] charArray = str.toCharArray(); for (int i = 0; i < charArray.length; i++) { System.out.println(charArray[i]); } String str1 = new String(charArray); System.out.println(str1); }
編碼:String ---> byte[] :調用String的getBytes()
解碼:byte[] ---> String : 調用String的構造器
/** * 編碼:字符串 -->字節 (看得懂的---->看不懂的二進制數據) * 解碼:字節 ---> 字符串(看不懂的二進制數據---->看得懂的) * @throws UnsupportedEncodingException */ @Test public void test4() throws UnsupportedEncodingException { String str = "abc123你好"; byte[] bytes = str.getBytes(); // 使用默認的字符集進行轉換 UTF-8 編碼 System.out.println(Arrays.toString(bytes)); String str1 = "abc123你好"; byte[] bytes1 = str1.getBytes("gbk"); // 指定編碼格式 System.out.println(Arrays.toString(bytes1)); System.out.println("---------------------"); String str2 = new String(bytes); // 解碼,使用的默認的格式 System.out.println(str2); String str3 = new String(bytes1 , "gbk");// 解碼,使用的指定的格式 System.out.println(str3); }
面試題:對比String、StringBuffer、StringBuilder ?
注意:做爲參數傳遞的話,方法內部String不會改變其值,StringBuffer和StringBuilder 會改變其值
源碼分析: String str = new String(); // char[] value = new char[0]; String str1 = new String("abc"); // char[] value = new char[]{'a','b','c'}; StringBuffer sb1 = new StringBuffer(); // char[] value = new char[16];底層建立一個長度16的char型數組 StringBuffer sb1 = new StringBuffer("abc"); // char[] value = new char["abc".length()+16];
問題1:
注意這個是裏面 裏面數據的長度,
public void test5(){ StringBuffer sb1 = new StringBuffer(); System.out.println(sb1.length()); // 0 StringBuilder sb2 = new StringBuilder("abc"); System.out.println(sb2.length()); // 3 }
問題2:
擴容問題,若是要添加的數據放不下了,那就須要擴容數組,默認狀況下,擴容爲原來的2倍+2,將原有數組中的數據複製到新的數組中去
String -----> StringBuffer、StringBuilder : 調用StringBuffer、StringBuilder構造器就能夠了
StringBuffer、StringBuilder -----> : 調用String的構造器
StringBuffer類的經常使用方法和StringBuilder相似
總結:
面試題:
public void testStringBuffer(){ String str = null; StringBuffer sb = new StringBuffer(); sb.append(str); System.out.println(sb.length()); // 4 System.out.println(sb); // "null" 這個是字符串null StringBuffer sb1 = new StringBuffer(str); // 拋異常 NullPointerException System.out.println(sb1); }