Object&&String学習
3724 ワード
Objectクラス
Stringクラス
Stringクラスの判断機能
Stringクラスの取得機能
Stringクラスの変換機能
置換機能
文字列の2つのスペースを削除
2つの文字列を辞書順に比較
2.授業ノート
String str1="abc";
String str2=new String("abc");
str1 , abc , str1。 , , str1。
str2 heap , abc,
, , str2.
string関連トレーニング
String s1 = new String("hello");
String s2 = new String("hello");
System.out.println(s1==s2); //false
System.out.println(s1.equals(s2)); //true
String s3 = new String("hello");
String s4 = "hello";
System.out.println(s3==s4); //false
System.out.println(s3.equals(s4)); //true
String s5 = "hello";
String s6 = "hello";
System.out.println(s5==s6); //true
System.out.println(s5.equals(s6)); //true
特別注意事項:
String s3="hello"
changeString(s3);
System.out.println("StringDemo2.main()"+s3);// hello
public static void changeString(String s){
s="123";
}
s3 , s3 s, s, s3 。