I have a class
class A {
private static HashMap hash;
public static void setHash(HashMap hash)
{
this.hash=hash;
}
public static HashMap getHash()
{
return hash;
}
}
I have two threads Thread A and Thread B
public class ThreadA implements Runnable
{
private HashMap hash;
public ThreadA(HashMap hash)
{
this.hash = hash
}
}
Similarly, for ThreadB
In main class I do the following
main()
{
// inserted some values in hashmap
Thread t1 = new Thread(new ThreadA(hash));
Thread t2 = new Thread(new ThreadB(hash));
}
One more thread C uses the setter method for hash to change the hashmap. The new values are not getting reflected in the threads A and B.
What could be the problem?
Thanks!
A; how exactly are you changing the HashMap instance inThreadAandThreadB? – vanza Jul 23 '12 at 5:04