String 類的replace方法替換字符串「無效」、「不起作用」原因

爲了去掉"abcdefg"中間的c public class Main {     public static void main(String[] args) {         String s = "abcdefg";         s.replace("c","");         System.out.println(s);     } } //輸出結果abcdefg 問題所在就是s
相關文章
相關標籤/搜索