When you do that, you are creating an anonymous subclass of HashSet, which means you are unnecessarily polluting your code base with classes that don't do anything new.
How about this instead?
Set<String> set = new HashSet<String>(Arrays.asList("foo", "bar"));
Or alternatively, use Guava's Sets class. It has factory methods to initialize different kinds of sets:
Set<String> set = Sets.newHashSet("foo", "bar");
With Maps it's trickier, but you can use ImmutableMap:
Map<String,String> myMap =
ImmutableMap.of("foo","bar","boo","jar");
or (mutable version)
Map<String,String> myMutableMap =
Maps.newHashMap(ImmutableMap.of("foo","bar","boo","jar"));
Without external libraries, you can still initialize a Map with a single entry:
Map<String,String> myMap = new HashMap<String, String>(
Collections.singleTonMap("foo","bar")
);
but that be one ugly beast, if you ask me.
UPD: The question is not only about sets, but about all types of
collections, added Map to illustrate this.
Guava has several Factory classes like this:
Sets, Maps, Lists, Multimaps, Multisets, Ranges
Set<Senator> honestSenators = {};... he's a funny guy :-) Thanks Andy! – Lukas Eder Jul 13 '11 at 15:27