代碼
提交代碼
public class StringTest4 {
public static void main(String[] args) {
// 創(chuàng)建一個字符串 str
String str = "hello imooc!";
// 對 str 重新賦值
str = "Java is great!";
System.out.println(str);
}
}
運(yùn)行結(jié)果