1、Object 2、String 3、StringBuilder ...
今日內容介紹
1、Object
2、String
3、StringBuilder
01API概念
- A:API(Application Programming Interface)
- 應用程式編程介面
- B:Java API
- 就是Java提供給我們使用的類,這些類將底層的實現封裝了起來,
- 我們不需要關心這些類是如何實現的,只需要學習這些類如何使用。
- C: 演示查看Object類中的相關方法
02Object類概述
- A:Object類概述
- 類層次結構的根類
- 所有類都直接或者間接的繼承自該類
- Object中描述的所有方法子類都可以使用
- 所有類在創建對象的時候,最終找的父類就是Object。
- B:構造方法
- public Object()
- 回想面向對象中為什麼說:
- 子類的構造方法預設訪問的是父類的無參構造方法
03equals方法比較記憶體地址
- A:equals方法比較記憶體地址
- a: Object類中的equals方法
- 用於比較兩個對象是否相同,Object類中就是使用兩個對象的記憶體地址在比較。
- Object類中的equals方法內部使用的就是==比較運算符。
b: 案例代碼
public class Person extends Object{ private String name; private int age; public Person(){} public Person(String name, int age) { this.name = name; this.age = age; } /* * 將父類的equals方法寫過來,重寫父類的方法 * 但是,不改變父類方法的源代碼, 方法equals 比較兩個對象的記憶體地址 * */ public boolean equals(Object obj){ return this == obj; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } } //測試代碼 public class TestEquals { public static void main(String[] args) { //Person類繼承Object類,繼承下來了父類的方法equals Person p1 = new Person("李四",20); Person p2 = new Person("張三",20); //Person對象p1,調用父類的方法equals,進行對象的比較 boolean b = p1.equals(p1); System.out.println(b); } }
- a: Object類中的equals方法
04重寫equals方法
- A: 重寫equals方法
- a: 開發中要比較兩個對象是否相同,經常會根據對象中的屬性值進行比較
- b: 在開發經常需要子類重寫equals方法根據對象的屬性值進行比較。
- c: ==號和equals方法的區別
- ==是一個比較運算符號,既可以比較基本數據類型,也可以比較引用數據類型,基本數據類型比較的是值,引用數據類型比較的是地址值
- equals方法是一個方法,只能比較引用數據類型,所有的對象都會繼承Object類中的方法,如果沒有重寫Object類中的equals方法,
equals方法和==號比較引用數據類型無區別,重寫後的equals方法比較的是對象中的屬性
- d: 案例代碼
public class Person extends Object{ private String name; private int age; public Person(){} public Person(String name, int age) { this.name = name; this.age = age; } /* * 重寫父類的方法toString() * 沒有必要讓調用者看到記憶體地址 * 要求: 方法中,返回類中所有成員變數的值 */ public String toString(){ return name + age; } /* * 將父類的equals方法寫過來,重寫父類的方法 * 但是,不改變父類方法的源代碼, 方法equals 比較兩個對象的記憶體地址 * * 兩個對象,比較地址,沒有意義 * 比較兩個對象的成員變數,age * 兩個對象變數age相同,返回true,不同返回false * * 重寫父類的equals,自己定義自己對象的比較方式 */ public boolean equals(Object obj){ if( this == obj){ return true; } //對參數obj,非null判斷 if( obj == null){ return false; } if( obj instanceof Person){ // 參數obj接受到是Person對象,才能轉型 // 對obj參數進行類型的向下轉型,obj轉成Person類型 Person p = (Person)obj; return this.age == p.age; } return false; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } } //測試代碼 public class TestEquals { public static void main(String[] args) { //Person類繼承Object類,繼承下來了父類的方法equals Person p1 = new Person("李四",20); Person p2 = new Person("張三",20); //Person對象p1,調用父類的方法equals,進行對象的比較 boolean b = p1.equals(p1); System.out.println(b); } }
- a: 開發中要比較兩個對象是否相同,經常會根據對象中的屬性值進行比較
05重寫toString方法
- A: 重寫toString方法
- a: 為什麼要重寫toString方法
- toString方法返回該對象的字元串表示,其實該字元串內容就是對象的類型+@+記憶體地址值。
- 由於toString方法返回的結果是記憶體地址,而在開發中,經常需要按照對象的屬性得到相應的字元串表現形式,因此也需要重寫它。
- Object類中的toString的核心代碼
getClass().getName() + "@" + Integer.toHexString(hashCode()) - 由於預設情況下的數據對我們來說沒有意義,一般建議重寫該方法。
- b: 案例核心代碼(重寫Person類中的toString方法)
/* * 重寫父類的方法toString() * 沒有必要讓調用者看到記憶體地址 * 要求: 方法中,返回類中所有成員變數的值 */ public String toString(){ return name + age; } //Eclipse中自動生成的toString @Override public String toString() { return "Person [name=" + name + ", age=" + age + "]"; } //測試代碼 public class TestToString { public static void main(String[] args) { //調用Person類的方法toString() //輸出語句中,寫的是一個對象,預設調用對象的toString方法 Person p = new Person("張三",20); String s = p.toString(); System.out.println(p); System.out.println(s); /* * System.out.println(p); * System.out.println(p.toString()); */ /*Random r = new Random(); System.out.println(r.toString()); Scanner sc = new Scanner(System.in); System.out.println(sc.toString());*/ } }
- a: 為什麼要重寫toString方法
06String類的概念和不變性
- A: String類的概念和不變性
- a:String類
- API中的String類的描述,發現String 類代表字元串
- Java 程式中的所有字元串字面值(如 "abc" )都作為此類的實例實現。
- 字元串是常量,在創建之後不能更改
- 其實就是說一旦這個字元串確定了,那麼就會在記憶體區域中就生成了這個字元串。字元串本身不能改變,但str變數中記錄的地址值是可以改變的。
- 源碼分析,String類底層採用的是字元數組:
private final char value[]
private 修飾說明value只能在String類內部使用,而且又沒有提供get方法,所以外部無法獲取value數組,就無法改變數組中元素的值
final修飾說明value是常量,一旦創建,就不能被改變,value一旦被初始化成某個數組,將永遠指向這個數組,不可能再指向其它的數組了
- b: 案例代碼
/* * String類特點: * 一切都是對象,字元串事物 "" 也是對象 * 類是描述事物,String類,描述字元串對象的類 * 所有的 "" 都是String類的對象 * * 字元串是一個常量,一旦創建,不能改變 */ public class StringDemo { public static void main(String[] args) { //引用變數str執行記憶體變化 //定義好的字元串對象,不變 String str = "itcast"; System.out.println(str); str = "itheima"; System.out.println(str); } }
- a:String類
07String類創建方式和比較
- A: String類創建方式和比較
- a: 創建對象的數量比較
- String s3 = "abc";
- 在記憶體中只有一個對象。這個對象在字元串常量池中
- String s4 = new String("abc");
- 在記憶體中有兩個對象。一個new的對象在堆中,一個字元串本身對象,在字元串常量池中
- String s3 = "abc";
- b: 案例代碼
public class StringDemo2 { public static void main(String[] args) { //字元串定義方式2個, 直接= 使用String類的構造方法 String str1 = new String("abc"); String str2 = "abc"; System.out.println(str1); System.out.println(str2); System.out.println(str1==str2);//引用數據類型,比較對象的地址 false System.out.println(str1.equals(str2));//true } }
- a: 創建對象的數量比較
08String類構造方法
- A: String類構造方法
- a: 常見構造方法
* public String():空構造 * public String(byte[] bytes):把位元組數組轉成字元串 * public String(byte[] bytes,int index,int length):把位元組數組的一部分轉成字元串 * public String(String original):把字元串常量值轉成字元串
- b: 案例代碼
public class StringDemo3 { public static void main(String[] args) { function_1(); } /* * 定義方法,String類的構造方法 * String(byte[] bytes) 傳遞位元組數組 * 位元組數組轉成字元串 * 通過使用平臺的預設字元集解碼指定的 byte 數組,構造一個新的 String。 * 平臺 : 機器操作系統 * 預設字元集: 操作系統中的預設編碼表, 預設編碼表GBK * 將位元組數組中的每個位元組,查詢了編碼表,得到的結果 * 位元組是負數,漢字的位元組編碼就是負數, 預設編碼表 ,一個漢字採用2個位元組表示 * * String(byte[] bytes, int offset, int length) 傳遞位元組數組 * 位元組數組的一部分轉成字元串 * offset 數組的起始的索引 * length 個數,轉幾個 , 不是結束的索引 */ public static void function(){ byte[] bytes = {97,98,99,100}; //調用String類的構造方法,傳遞位元組數組 String s = new String(bytes); System.out.println(s); byte[] bytes1 ={65,66,67,68,69}; //調用String構造方法,傳遞數組,傳遞2個int值 String s1 = new String(bytes1,1,3); System.out.println(s1); } }
09String類構造方法_2
- A: String類構造方法
a: 常見構造方法
- public String(char[] value):把字元數組轉成字元串
- public String(char[] value,int index,int count):把字元數組的一部分轉成字元串
- B: 案例代碼
/* * String類構造方法 * String類的構造方法,重載形式 * */ public class StringDemo3 { public static void main(String[] args) { function_1(); } /* * String(char[] value) 傳遞字元數組 * 將字元數組,轉成字元串, 字元數組的參數,不查詢編碼表 * * String(char[] value, int offset, int count) 傳遞字元數組 * 將字元數組的一部分轉成字元串 * offset 數組開始索引 * count 個數 */ public static void function_1(){ char[] ch = {'a','b','c','d','e','f'}; //調用String構造方法,傳遞字元數組 String s = new String(ch); System.out.println(s); String s1 = new String(ch,1,4); System.out.println(s1); } }
10String類的其他方法
* A:String類的其他方法
* a: 方法介紹
* int length(): 返回字元串的長度
* String substring(int beginIndex,int endIndex): 獲取字元串的一部分
* String substring(int beginIndex): 獲取字元串的一部分
* boolean startsWith(String prefix): 判斷一個字元串是不是另一個字元串的首碼,開頭
* boolean endsWith(String prefix): 判斷一個字元串是不是另一個字元串的尾碼,結尾
* boolean contains (String s): 判斷一個字元串中,是否包含另一個字元串
* int indexOf(char ch): 查找一個字元,在字元串中第一次出現的索引,被查找的字元不存在,返回-1
* byte[] getBytes(): 將字元串轉成位元組數組,此功能和String構造方法相反,byte數組相關的功能,查詢編碼表
* char[] toCharArray(): 將字元串轉成字元數組,功能和構造方法相反
* boolean equals(Object obj): 方法傳遞字元串,判斷字元串中的字元是否完全相同,如果完全相同返回true
* boolean equalsIgnoreCase(String s): 傳遞字元串,判斷字元串中的字元是否相同,忽略大小寫
* b: 案例代碼
public class StringDemo4 {
public static void main(String[] args) {
function_9();
}
/*
* boolean equals(Object obj)
* 方法傳遞字元串,判斷字元串中的字元是否完全相同,如果完全相同返回true
*
* boolean equalsIgnoreCase(String s)
* 傳遞字元串,判斷字元串中的字元是否相同,忽略大小寫
*/
public static void function_9(){
String str1 = "Abc";
String str2 = "abc";
//分別調用equals和equalsIgnoreCase
boolean b1 = str1.equals(str2);
boolean b2 = str1.equalsIgnoreCase(str2);
System.out.println(b1);
System.out.println(b2);
}
/*
* char[] toCharArray() 將字元串轉成字元數組
* 功能和構造方法相反
*/
public static void function_8(){
String str = "itcast";
//調用String類的方法toCharArray()
char[] ch = str.toCharArray();
for(int i = 0 ; i < ch.length ; i++){
System.out.println(ch[i]);
}
}
/*
* byte[] getBytes() 將字元串轉成位元組數組
* 此功能和String構造方法相反
* byte數組相關的功能,查詢編碼表
*/
public static void function_7(){
String str = "abc";
//調用String類方法getBytes字元串轉成位元組數組
byte[] bytes = str.getBytes();
for(int i = 0 ; i < bytes.length ; i++){
System.out.println(bytes[i]);
}
}
/*
* int indexOf(char ch)
* 查找一個字元,在字元串中第一次出現的索引
* 被查找的字元不存在,返回-1
*/
public static void function_6(){
String str = "itcast.cn";
//調用String類的方法indexOf
int index = str.indexOf('x');
System.out.println(index);
}
/*
* boolean contains (String s)
* 判斷一個字元串中,是否包含另一個字元串
*/
public static void function_5(){
String str = "itcast.cn";
//調用String類的方法contains
boolean b =str.contains("ac");
System.out.println(b);
}
/*
* boolean endsWith(String prefix)
* 判斷一個字元串是不是另一個字元串的尾碼,結尾
* Demo.java
* .java
*/
public static void function_4(){
String str = "Demo.java";
//調用String類方法endsWith
boolean b = str.endsWith(".java");
System.out.println(b);
}
/*
* boolean startsWith(String prefix)
* 判斷一個字元串是不是另一個字元串的首碼,開頭
* howareyou
* hOw
*/
public static void function_3(){
String str = "howareyou";
//調用String類的方法startsWith
boolean b = str.startsWith("hOw");
System.out.println(b);
}
/*
* String substring(int beginIndex,int endIndex) 獲取字元串的一部分
* 返回新的字元串
* 包含頭,不包含尾巴
*
* String substring(int beginIndex)獲取字元串的一部分
* 包含頭,後面的字元全要
*/
public static void function_2(){
String str = "howareyou";
//調用String類方法substring獲取字元串一部分
str= str.substring(1, 5);
System.out.println(str);
String str2 = "HelloWorld";
str2 = str2.substring(1);
System.out.println(str2);
}
/*
* int length() 返回字元串的長度
* 包含多少個字元
*/
public static void function(){
String str = "cfxdf#$REFewfrt54GT";
//調用String類方法length,獲取字元串長度
int length = str.length();
System.out.println(length);
}
}
11String類練習
- A: 獲取指定字元串中,大寫字母、小寫字母、數字的個數
- a: 題目分析
- 為了統計大寫字母、小寫字母、數字的個數。創建3個計數的變數。
- 為了獲取到字元串中的每個字元,進行字元串的遍歷,得到每個字元。
- 對得到的字元進行判斷,如果該字元為大寫字母,則大寫字母個數+1;如果該字元為小寫字母,則小寫字母個數+1;如果該字元為數字,則數字個數+1。
- 顯示大寫字母、小寫字母、數字的個數
- b: 解題步驟
- 略
案例代碼
public class StringTest { public static void main(String[] args) { getCount("A%A3eBr1FFy"); } /* * 獲取指定字元串中,大寫字母、小寫字母、數字的個數。 * 思想: * 1. 計數器,就是int變數,滿足一個條件 ++ * 2. 遍歷字元串, 長度方法length() + charAt() 遍歷 * 3. 字元判斷是大寫,是小寫,還是數字 */ public static void getCount(String str){ //定義三個變數,計數 int upper = 0; int lower = 0; int digit = 0; //對字元串遍歷 for(int i = 0 ; i < str.length() ; i++){ //String方法charAt,索引,獲取字元 char c = str.charAt(i); //利用編碼表 65-90 97-122 48-57 if(c >='A' && c <=90){ upper++; }else if( c >= 97 && c <= 122){ lower++; }else if( c >= 48 && c <='9'){ digit++; } } System.out.println(upper); System.out.println(lower); System.out.println(digit); } }
- a: 題目分析
12String類練習_2
- A: 將字元串中,第一個字母轉換成大寫,其他字母轉換成小寫,並列印改變後的字元串。
- a: 題目分析
- 把字元串分為兩個部分,第一部分為字元串中第一個字母,第二部分為剩下的字元串。
- 把第一部分字元串轉換成大寫字母,把第二部分字元串轉換成小寫字母
- 把兩部分字元串連接在一起,得到一個完整的字元串
- b: 解題步驟
- 略
C: 案例代碼
public class StringTest { public static void main(String[] args) { System.out.println(toConvert("aBc5%4dEF")); } /* * 將字元串的首字母轉成大寫,其他內容轉成小寫 * 思想: * 獲取首字母, charAt(0) substring(0,1) * 轉成大寫 toUpperCase() * * 獲取剩餘字元串, substring(1) toLowerCase() */ public static String toConvert(String str){ //定義變數,保存首字母,和剩餘字元 String first = str.substring(0,1); String after = str.substring(1); //調用String類方法,大寫,小寫轉換 first = first.toUpperCase(); after = after.toLowerCase(); return first+after; } }
- a: 題目分析
13String類練習_3
- A: 查詢大字元串中,出現指定小字元串的次數
- a: 題目分析
- 在大串中,查找小串出現的位置,出現了就次數+1
- 在上次小串出現位置的後面繼續查找,需要更改大串的內容為上次未查詢到的字元串。
- 回到第一步,繼續查找小串出現的位置,直到大串中查詢不到小串為止
- b: 解題步驟
- 略
- C: 案例代碼
package cn.itcast.demo02; public class StringTest { public static void main(String[] args) { System.out.println(getStringCount("hellojava,nijavahaojava,javazhenbang", "java")); } /* * 獲取一個字元串中,另一個字元串出現的次數 * 思想: * 1. indexOf到字元串中到第一次出現的索引 * 2. 找到的索引+被找字元串長度,截取字元串 * 3. 計數器++ */ public static int getStringCount(String str, String key){ //定義計數器 int count = 0; //定義變數,保存indexOf查找後的索引的結果 int index = 0; //開始迴圈找,條件,indexOf==-1 字元串沒有了 while(( index = str.indexOf(key) )!= -1){ count++; //獲取到的索引,和字元串長度求和,截取字元串 str = str.substring(index+key.length()); } return count; } }
- a: 題目分析
14StringBuffer特點可變字元數組
- A:StringBuffer類概述
- 通過JDK提供的API,查看StringBuffer類的說明
- 線程安全的可變字元序列
- 底層採用字元數組實現,初始容量為16
- B:StringBuffer和String的區別
- String是一個不可變的字元序列
- StringBuffer是一個可變的字元序列
15StringBuffer類的方法
- A: StringBuffer類的方法
- a: 方法介紹
- StringBuffer append(), 將任意類型的數據,添加緩衝區
- append 返回值,寫return this
- 調用者是誰,返回值就是誰
- delete(int start,int end): 刪除緩衝區中字元
- 開始索引包含,結尾索引不包含
- insert(int index, 任意類型): 將任意類型數據,插入到緩衝區的指定索引上
- replace(int start,int end, String str): 將指定的索引範圍內的所有字元,替換成新的字元串
- reverse(): 將緩衝區中的字元反轉
- String toString(): 繼承Object,重寫toString()
- 將緩衝區中的所有字元,變成字元串
- StringBuffer append(), 將任意類型的數據,添加緩衝區
- b: 案例代碼
public class StringBufferDemo { public static void main(String[] args) { function_5(); } /* * StringBuffer類的方法 * String toString() 繼承Object,重寫toString() * 將緩衝區中的所有字元,變成字元串 */ public static void function_5(){ StringBuffer buffer = new StringBuffer(); buffer.append("abcdef"); buffer.append(12345); //將可變的字元串緩衝區對象,變成了不可變String對象 String s = buffer.toString(); System.out.println(s); } /* * StringBuffer類的方法 * reverse() 將緩衝區中的字元反轉 */ public static void function_4(){ StringBuffer buffer = new StringBuffer(); buffer.append("abcdef"); buffer.reverse(); System.out.println(buffer); } /* * StringBuffer類方法 * replace(int start,int end, String str) * 將指定的索引範圍內的所有字元,替換成新的字元串 */ public static void function_3(){ StringBuffer buffer = new StringBuffer(); buffer.append("abcdef"); buffer.replace(1, 4, "Q"); System.out.println(buffer); } /* * StringBuffer類方法 insert * insert(int index, 任意類型) * 將任意類型數據,插入到緩衝區的指定索引上 */ public static void function_2(){ StringBuffer buffer = new StringBuffer(); buffer.append("abcdef"); buffer.insert(3, 9.5); System.out.println(buffer); } /* * StringBuffer類方法 * delete(int start,int end) 刪除緩衝區中字元 * 開始索引包含,結尾索引不包含 */ public static void function_1(){ StringBuffer buffer = new StringBuffer(); buffer.append("abcdef"); buffer.delete(1,5); System.out.println(buffer); } /* * StringBuffer類方法 * StringBuffer append, 將任意類型的數據,添加緩衝區 * append 返回值,寫return this * 調用者是誰,返回值就是誰 */ public static void function(){ StringBuffer buffer = new StringBuffer(); //調用StringBuffer方法append向緩衝區追加內容 buffer.append(6).append(false).append('a').append(1.5); System.out.println(buffer); } }
- a: 方法介紹
16StringBuilder類
- A:StringBuilder的概述
- 通過查看API瞭解一下StringBuilder類
- B:面試題
- String,StringBuffer,StringBuilder的區別
- StringBuffer和StringBuilder的區別
- StringBuffer是jdk1.0版本的,是線程安全的,效率低
- StringBuilder是jdk1.5版本的,是線程不安全的,效率高
- String和StringBuffer,StringBuilder的區別
- String是一個不可變的字元序列
- StringBuffer,StringBuilder是可變的字元序列
- StringBuffer和StringBuilder的區別
- String,StringBuffer,StringBuilder的區別
17StringBuffer類案例拼接數組
- A: StringBuffer類案例拼接數組
- a: 題目分析
- 定義StringBuffer對象
- 遍曆數組,按照格式要求拼接處新的字元串,追加到StringBuffer容器中
- 將StringBuffer中的內容以String的形式返回
- b: 解題步驟
- 略
- C: 案例代碼
public class StringBufferTest { public static void main(String[] args) { int[] arr = {4,1,4,56,7,8,76}; System.out.println(toString(arr)); } /* * int[] arr = {34,12,89,68};將一個int[]中元素轉成字元串 * 格式 [34,12,89,68] * String s = "[" * 數組遍歷 * s+= arr[i]; * s+"]" * StringBuffer實現,節約記憶體空間, String + 在緩衝區中,append方法 */ public static String toString(int[] arr){ //創建字元串緩衝區 StringBuffer buffer = new StringBuffer(); buffer.append("["); //數組遍歷 for(int i = 0 ; i < arr.length;i++){ //判斷是不是數組的最後一個元素 if(i == arr.length-1){ buffer.append(arr[i]).append("]"); }else{ buffer.append(arr[i]).append(","); } } return buffer.toString(); } }
- a: 題目分析
作業測試
1.用代碼演示String類中的以下方法的用法
(1)boolean isEmpty(): 判斷字元串是不是空串,如果是空的就返回true
(2)char charAt(int index): 返回索引上的字元
(3)String toLowerCase(): 字元串轉成小寫
(4)String toUpperCase(): 字元串轉成大寫
(5)String repalce(char oldChar, char newChar): 將字元串中的老字元,替換為新字元
(6)String repalce(String old, String newstr): 將字元串中的老字元串,替換為新字元串
(7)String trim(): 去掉字元串兩端空格
2.分析以下需求,並用代碼實現:
(1)定義如下方法public static String getPropertyGetMethodName(String property);
(2)該方法的參數為String類型,表示用戶給定的成員變數的名字,返回值類型為String類型,返回值為成員變數對應的get方法的名字
(3)如:用戶調用此方法時給定的參數為"name",該方法的返回值為"getName"
3.分析以下需求,並用代碼實現:
(1)定義數字字元串數組{"010","3223","666","7890987","123123"}
(2)判斷該數字字元串數組中的數字字元串是否是對稱(第一個數字和最後一個數字相等,第二個數字和倒數第二個數字是相等的,依次類推)的,並逐個輸出
(3)如:010 是對稱的,3223 是對稱的,123123 不是對稱的
(4)最終列印該數組中對稱字元串的個數
提示:迴圈獲取字元串的每一個字元,依次比較第一個和最後一個,第二個和倒數第二個。。。
4.分析以下需求,並用代碼實現:
(1)從鍵盤迴圈錄入錄入一個字元串,輸入"end"表示結束
(2)將字元串中大寫字母變成小寫字母,小寫字母變成大寫字母,其它字元用"*"代替,並統計字母的個數
舉例:
鍵盤錄入:Hello12345World
輸出結果:hELLO*****wORLD
總共10個字母
5.分析以下需求,並用代碼實現:
(1)從鍵盤迴圈錄入錄入一個字元串,輸入"end"表示結束
(2)定義一個方法
public Object[] deleteSubString(String str1,String str2) {
}
(3)方法功能描述:從str1中刪除所有的str2,並返回刪除後的結果,返回結果為Object[]數組
* 該數組的第一個元素為刪除所有的str2後的最終的字元串
* 該數組的第二個元素為刪除的str2的個數
6.關於String類的練習題,分析運行結果?
public class Test01 {
public static void main(String[] args) {
//demo1();
//demo2();
//demo3();
//demo4();
demo5();
}
private static void demo5() {
String s1 = "ab";
String s2 = "abc";
String s3 = s1 + "c";
System.out.println(s3 == s2);
System.out.println(s3.equals(s2)); //true
}
private static void demo4() {
//byte b = 3 + 4; //在編譯時就變成7,把7賦值給b,常量優化機制
String s1 = "a" + "b" + "c";
//java中有常量優化機制,在編譯時期就能確定s2的值為"abc",所以編譯時期,在常量池中創建"abc"
String s2 = "abc";//執行到這裡時常量池中已經有了"abc",所以就不再創建,
//所以s1和s2指向的是常量池中同一個字元串常量"abc"
System.out.println(s1 == s2); //true,java中有常量優化機制
System.out.println(s1.equals(s2)); //true
}
private static void demo3() {//==比較的是地址值
String s1 = new String("abc"); //錄的是堆記憶體對象的地址值
String s2 = "abc"; //記錄的是常量池中的地址值
System.out.println(s1 == s2); //false
System.out.println(s1.equals(s2)); //true
}
private static void demo2() {
//創建幾個對象
//創建兩個對象,一個在常量池中,一個在堆記憶體中
String s1 = new String("abc");
System.out.println(s1);
}
private static void demo1() { //常量池中沒有這個字元串對象,就創建一個,如果有直接用即可
String s1 = "abc";
String s2 = "abc";
System.out.println(s1 == s2); //==號比較的是地址值,true
System.out.println(s1.equals(s2)); //比較的是字元串的內容:true
}
}