Chúng ta đều biết rằng String
Java là bất biến, nhưng hãy kiểm tra đoạn mã sau:
String s1 = "Hello World";
String s2 = "Hello World";
String s3 = s1.substring(6);
System.out.println(s1); // Hello World
System.out.println(s2); // Hello World
System.out.println(s3); // World
Field field = String.class.getDeclaredField("value");
field.setAccessible(true);
char[] value = (char[])field.get(s1);
value[6] = 'J';
value[7] = 'a';
value[8] = 'v';
value[9] = 'a';
value[10] = '!';
System.out.println(s1); // Hello Java!
System.out.println(s2); // Hello Java!
System.out.println(s3); // World
Tại sao chương trình này hoạt động như thế này? Và tại sao giá trị của s1
và s2
thay đổi, nhưng không s3
?
(Integer)1+(Integer)2=42
bằng cách gây rối với hộp thư tự động được lưu trữ; (Disgruntled-Bomb-Java-Edition) ( thed Dailywtf.com/Articles/Disgruntled-Bomb-Java-Edition.aspx )