I am having a problem understanding how sleep works. For example in Java, if I have a Thread and write:
try{
Thread.sleep(1000);
}
catch(exception e){//something}
finally{ someFunction();}
as I understand it, in this code, the threadf sleeps for one second and then performs someFunction. But why doesn't this work:
try{
Thread.sleep(1000);
someFunction();
}
catch(exception e){//something}
Surely in this code, the processor "sleeps" for a seocnd and then performs someFunction(). But that's not hwo it works. I would like to know why?