How we can name the HashMap at runtime:
for eg
String s="wow"
and i want to have a hashmap created at runtime as below
HashMap<String,String> wow=new HashMap<String,String>();
how we can acheive the same
How we can name the HashMap at runtime:
for eg
String s="wow"
and i want to have a hashmap created at runtime as below
HashMap<String,String> wow=new HashMap<String,String>();
how we can acheive the same