Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

sleep function in thread class is static.i read sleep function can make a thread sleep for a particular time while others threads running.

As sleep function is static ...when it is called it will be applicable to all threads.how it will be used to keep particular thread in sleep state.

share|improve this question
Do you really want to make a thread other than the current thread sleep? It's technically possible (but almost never a good idea.) – finnw Feb 4 '11 at 18:25

5 Answers

Thread.sleep();

will put current thread from which this code is executed in sleep mode

Causes the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds.

share|improve this answer

The sleep method is not applicable to all threads, when called it obtains the current thread inside it (probably using another static method, Thread.currentThread()). The method call invocation is only applicable to the current thread due to the principles of heap/stack visibility, and doesn't modify any static fields (it is self-contained).

share|improve this answer

When called, it will make the currently executing thread sleep.

share|improve this answer

According to the java documentation :

 public static void sleep(long millis,
                             int nanos)
                      throws InterruptedException

Causes the currently executing thread to sleep (cease execution) for the specified number of milliseconds plus the specified number of nanoseconds. The thread does not lose ownership of any monitors.

So when you call sleep(), you will sleep the current thread.

share|improve this answer
This sleep(millis) is perhaps a better example as the nanos is pointless IMHO. i.e. it doesn't do what it suggests. – Peter Lawrey Feb 4 '11 at 16:56

Since the method depends on the state of the jvm calling thread and not on the thread represented by an object it has to be static, anything else would be misleading.

Implementing it to work on Thread instances would not work out well, since stopping other threads can cause the complete jvm to halt if locks to jvm resources are held (link).

share|improve this answer
-1 misleading. The "currently running thread" is not a global variable (else how could a VM use multiple cores?) – finnw Feb 4 '11 at 18:24
@finnw fixed, can't believe I got that wrong. – josefx Feb 4 '11 at 19:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.