Tagged Questions
15
votes
7answers
542 views
Java collections API: why are Unmodifiable[List|Set|Map] not publicly visible classes?
Collections.unmodifiableList(...) returns a new instance of a static inner class UnmodifiableList. Other unmodifiable collections classes are constructed same way.
Were these classes public, one had ...
7
votes
9answers
4k views
Does the unmodifiable wrapper for java collections make them thread safe?
I need to make an ArrayList of ArrayLists thread safe. I also cannot have the client making changes to the collection. Will the unmodifiable wrapper make it thread safe or do I need two wrappers on ...
4
votes
3answers
205 views
Is there any performance risk to Collections.unmodifiableList?
I suggested returning Collections.unmodifiableList() instead of directly returning a member variable, and my colleague is concerned that there would be a performance hit. Of course the best answer is ...
4
votes
6answers
439 views
How inefficient is passing Collections.unmodifiable* an instance which is already wrapped with Collections.unmodifiable*?
I have bits of piecework being done by different custom (source code unavailable) frameworks which hand back Map instances. Unfortunately, these frameworks are not consistent in their returning Map ...
3
votes
3answers
129 views
Returning an unmodifiable map
Using Collections.unmodifiableMap(...), I'm trying to return an unmodifiable view of a map. Let's say I have the following method,
public final Map<Foo, Bar> getMap(){
...
return ...
1
vote
3answers
601 views
Defects of Immutable collections of Guava?
I am not sure the defects of Immutable collections I understand is correct, so I list them in this answer. Hope someone corrects me here.
a): Comparing to Collections.unmodifiableXXX(), ...
1
vote
2answers
630 views
When is the unmodifiablemap (really) necessary?
I have a map of constants, like this:
private static Map<String, Character> _typesMap =
new HashMap<String, Character>() {
{
put ("string", 'S');
...
1
vote
3answers
731 views
Unmodifiable lists in C#
In Java, one can use the Collections#unmodifiableList() method to create an unmodifiable list from an existing List object. Is there any counterpart in C# ? I'm new to the language and haven't been ...