ในขณะที่มันเป็นความจริงที่ใช้Collections.unmodifiableList()
งานได้บางครั้งคุณอาจมีห้องสมุดขนาดใหญ่ที่มีวิธีการที่กำหนดไว้แล้วเพื่อส่งกลับอาร์เรย์ (เช่นString[]
) เพื่อป้องกันไม่ให้แตกคุณสามารถกำหนดอาร์เรย์เสริมที่จะเก็บค่า:
public class Test {
private final String[] original;
private final String[] auxiliary;
/** constructor */
public Test(String[] _values) {
original = new String[_values.length];
// Pre-allocated array.
auxiliary = new String[_values.length];
System.arraycopy(_values, 0, original, 0, _values.length);
}
/** Get array values. */
public String[] getValues() {
// No need to call clone() - we pre-allocated auxiliary.
System.arraycopy(original, 0, auxiliary, 0, original.length);
return auxiliary;
}
}
ทดสอบ:
Test test = new Test(new String[]{"a", "b", "C"});
System.out.println(Arrays.asList(test.getValues()));
String[] values = test.getValues();
values[0] = "foobar";
// At this point, "foobar" exist in "auxiliary" but since we are
// copying "original" to "auxiliary" for each call, the next line
// will print the original values "a", "b", "c".
System.out.println(Arrays.asList(test.getValues()));
ไม่สมบูรณ์แบบ แต่อย่างน้อยคุณมี "อาร์เรย์ที่ไม่เปลี่ยนรูปแบบหลอก" (จากมุมมองของชั้นเรียน) และสิ่งนี้จะไม่ทำลายรหัสที่เกี่ยวข้อง