-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathReadOnly.java
More file actions
43 lines (34 loc) · 1.26 KB
/
ReadOnly.java
File metadata and controls
43 lines (34 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package thinkinginjava.containers;
// Using the Collections.unmodifiable methods.
import java.util.*;
import thinkinginjava.util.Countries;
import static thinkinginjava.util.Print.*;
public class ReadOnly {
static Collection<String> data = new ArrayList<String>(Countries.names(6));
public static void main(String[] args) {
Collection<String> c = Collections
.unmodifiableCollection(new ArrayList<String>(data));
print(c); // Reading is OK
// ! c.add("one"); // Can't change it
List<String> a = Collections.unmodifiableList(new ArrayList<String>(
data));
ListIterator<String> lit = a.listIterator();
print(lit.next()); // Reading is OK
// ! lit.add("one"); // Can't change it
Set<String> s = Collections.unmodifiableSet(new HashSet<String>(data));
print(s); // Reading is OK
// ! s.add("one"); // Can't change it
// For a SortedSet:
Set<String> ss = Collections.unmodifiableSortedSet(new TreeSet<String>(
data));
Map<String, String> m = Collections
.unmodifiableMap(new HashMap<String, String>(Countries
.capitals(6)));
print(m); // Reading is OK
// ! m.put("Ralph", "Howdy!");
// For a SortedMap:
Map<String, String> sm = Collections
.unmodifiableSortedMap(new TreeMap<String, String>(Countries
.capitals(6)));
}
}