Tagged Questions

2
votes
6answers
162 views

Java: Sort an unmodifiable list

How would one do this? I have tried creating a new, empty list, then copying unmodifiable list's elements to it, but I'm getting unsupported operation error. Any help is appreciated.
1
vote
3answers
170 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 …
2
votes
4answers
557 views

How to create a deep unmodifiable collection?

I often make a collection field unmodifiable before returning it from a getter method: private List<X> _xs; .... List<X> getXs(){ return Collections.unmodifiableList(_xs); } But I …
3
votes
9answers
1k 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 …