1 String str1="abcde"; 2 String str2=str1.substring(2); 3 System.out.println(str1);//abcde,字符串时常量,一旦定义,其值无法改变 4 System.out.println(str2);//cde