我对以下程序有疑问
请看下面的程序
public class Kiran {
public static void main(String args[]) {
String str = "Test";
str.replace('T', 'B');
System.out.println("The modified string is now " + str);
}
}
我所期待的是,一旦我运行这个程序,我应该看到 putput 为 Best,但令我惊讶的是输出是 Test。
谁能告诉我,为什么会这样??
提前致谢 。