Java是一種高階程式語言,它被廣泛地應用於各種應用程式的開發。其中,字串是Java中一個非常重要的資料型別。本篇文章將介紹Java語言字串的使用方法,包括建立字串、字串比較、字串連接、字串截取等。
在Java中,可以用兩種方法來建立字串。第一種方法是使用字串字面量。例如,下面這行程式碼會建立一個字串對象,其值為"Hello World!":
String str = "Hello World!";
第二種方法是使用String類別的建構子。例如,下面這行程式碼會使用建構函式建立一個字串對象,其值為"Hello World!":
String str = new String("Hello World!");
String str1 = "Hello"; String str2 = "hello"; if(str1.equals(str2)){ System.out.println("两个字符串相等"); }else{ System.out.println("两个字符串不相等"); }
String str1 = "Hello"; String str2 = "hello"; if(str1.equalsIgnoreCase(str2)){ System.out.println("两个字符串相等"); }else{ System.out.println("两个字符串不相等"); }
String str1 = "Hello"; String str2 = "World"; String str3 = str1 + str2; System.out.println(str3); //输出HelloWorld
String str1 = "Hello"; String str2 = "World"; String str3 = str1.concat(str2); System.out.println(str3); //输出HelloWorld
String str1 = "Hello"; String str2 = "World"; StringJoiner sj = new StringJoiner(""); sj.add(str1).add(str2); String str3 = sj.toString(); System.out.println(str3); //输出HelloWorld
String str1 ="Hello World"; String str2 = str1.substring(1, 5); System.out.println(str2); //输出ello
String str1 ="Hello World"; String[] str2 = str1.split(" "); for(int i = 0; i < str2.length; i++){ System.out.println(str2[i]); //输出Hello和World }
以上是Java語言字串使用方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!