हालांकि यह सच है कि 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()));
सही नहीं है, लेकिन कम से कम आपके पास "छद्म अपरिवर्तनीय सरणियाँ" (वर्ग के नजरिए से) हैं और इससे संबंधित कोड नहीं टूटेगा।