美文网首页
修改String 字符串

修改String 字符串

作者: 牛马风情 | 来源:发表于2018-05-17 11:04 被阅读0次
        public static void main(String[] args) throws Exception {
    
    
            String s = "hello word";
    
            Field va = String.class.getDeclaredField("value");
            va.setAccessible(true);
    
            char[] c = (char[]) va.get(s);
    
            c[1] = 'A';
    
            System.out.println(s);
    }
    

    相关文章

      网友评论

          本文标题:修改String 字符串

          本文链接:https://www.haomeiwen.com/subject/iofbdftx.html