new ConcurrentHashMap of new ConcurrentHashMap

2.5k Views Asked by At

I'm trying to initialize a ConcurrentHashMap of ConcurrentHashMaps with

private final ConcurrentHashMap<
    String, 
    ConcurrentHashMap<String, Double>
> myMulitiConcurrentHashMap = new ConcurrentHashMap<
    String, 
    new ConcurrentHashMap<String, Double>()
>();

but javac gives

HashMapper.java:132: error: illegal start of type
    new ConcurrentHashMap<String, Double>()
    ^
HashMapper.java:132: error: '(' or '[' expected
    new ConcurrentHashMap<String, Double>()
        ^
HashMapper.java:132: error: ';' expected
    new ConcurrentHashMap<String, Double>()

pointing to the second new.

How can myMulitiConcurrentHashMap be newly initialized properly?

3

There are 3 best solutions below

0
On BEST ANSWER

By the way, Java 7 has a more concise syntax now (the "diamond"):

private final 
   ConcurrentHashMap<String, ConcurrentHashMap<String, Double>>
      myMulitiConcurrentHashMap =
         new ConcurrentHashMap<>();

You should be able to use interfaces on the left hand side, too:

private final 
   ConcurrentMap<String, ConcurrentMap<String, Double>>
      myMulitiConcurrentHashMap =
         new ConcurrentHashMap<>();
3
On

You do not initialize the inner ConcurrentHashMap<String, Double>; just the following should work:

new ConcurrentHashMap<
    String, 
    ConcurrentHashMap<String, Double>
>();
0
On

Generic type parameters are exactly that – types.
It doesn't make sense to have a Map<String, new SomeType()>.
You need to simply write the type of the second parameter.

To paraphrase, you're creating a single new ConcurrentHashMap<K, V>(), which can hold multiple inner maps later.