Java – What is the maximum thread sleep time?

What is the maximum thread sleep time?… here is a solution to the problem.

What is the maximum thread sleep time?

Can anyone tell me Thread.sleep(time); Maximum sleep time (in milliseconds) used in Android operating system?

Solution

I don’t think Thread.sleep() has a maximum time. No matter what time you type, the thread will hibernate during that time.

Related Problems and Solutions