I wanted to print 100 as output in the below program.
I am getting 0 as answer.
class s extends Thread{
int j=0;
public void run() {
try{Thread.sleep(5000);}
catch(Exception e){}
j=100;
}
public static void main(String args[])
{
s t1=new s();
t1.start();
System.out.println(t1.j);
}
}
j(or declare itvolatile). It is possible (though unlikely) that the main thread could see a stale value ofjeven after thesthread has finished writing to it. See Brian Goetz's book "Java Concurrency in Practice" for a good explanation of why this is true. – Cameron Skinner Jan 14 '11 at 17:17