I got a small problem that I can't figure out.
I have a superclass (SetupFunctions) which I have used in my HashMap -->
public HashMap<Integer, SetupFunctions> map = new HashMap<Integer, SetupFunctions>();
And all the other classes extends that SetupFunction.
I need to do like 160 methods which retrives unique data and I need to store that data in one place to check later (it's an automated test).
Thats why I have the type SetupFuncition in the HashMap.
So, I instantiate a class with a constructor and then add it in the hashmap:
MyClass m = new MyClass (car1, var2, var3, var4, var5);
map.put(getCenarioID(), m);
On the same method, I added some sysout just to see what's happening:
System.out.println(map.containsKey(1));
System.out.println(map.size());
As expected, it prints True and 1... But when I leave this method (end of the execution of the method) and goes back to the main method, that same sysout prints False and 0.
I want to know why my hashmap is empty or reseting... That not suppose to happend... Am I right?
Mapvariable located? Do the main method and the method which puts MyClass in the map really use the same variable? Can you produce a short code that shows the same behaviour, so you and we can find out what is happening? – Christian Semrau Apr 2 '11 at 17:12