Java中的字串總結
阿新 • • 發佈:2018-12-09
Java提供了三個字串類:String類、StringBuffer類、StringBuilder類
1.建立String類物件
public class StringDemo(){ public static void main(String[] args){ char ch1[]={'H','e','l','l','o'}; String str1=new String(ch1);//刷題的時候使用過這種建立方法 String str2=new String(ch1,1,2);//使用字元陣列中0下標開始的2個字元建立一個字串 String str3="Hello"; System.out.println("str1="+str1);//Hello System.out.println("str2="+str2);//el System.out.println("str3="+str3);//Hello } }
2.字串的長度及提取單個字串
public int length();返回字串的長度。//注意區分length方法。
public boolean isEmpty();判斷字串是否為空("")。//字串值為null時方法報空指標異常錯誤。
public char charAt(int index);返回字串指定位置index的字元。