I need to create a Set with initial values.
Set<String> h = new HashSet<String>();
h.add("a");
h.add("b");
Is there a way to do it in one command? Thanks
|
I need to create a Set with initial values.
Is there a way to do it in one command? Thanks
| ||||
|
feedback
|
|
Collection literals were scheduled for Java 7, but didn't make it in. So nothing automatic yet. You can use guava's
Or you can use the following syntax, which will create an anonymous class, but it's hacky:
| |||||||||||||
feedback
|
|
There are a few ways: Double brace initialization This is a technique which creates an anonymous inner class which has an instance initializer which adds
Keep in mind that this will actually create an new subclass of A utility method Writing a method that returns a
The above code only allows for a use of a Use a library Many libraries have a convenience method to initialize collections objects. For example, Google Collections has a | |||||
feedback
|
|
You can do it in Java 6:
But why? I don't find it to be more readable than explicitly adding elements. | |||||||||||||
feedback
|
|
A bit convoluted but works from Java 5:
Use a helper method to make it readable:
| |||||
feedback
|
|
There is a shorthand that I use that is not very time efficient, but fits on a single line:
Again, this is not time efficient since you are constructing an array, converting to a list and using that list to create a set. When initializing static final sets I usually write it like this:
Slightly less ugly and efficiency does not matter for the static initialization. | |||
|
feedback
|
|
A generalization of coobird's answer's utility function for creating new
| |||
|
feedback
|