約45,800件1ページ目

日本語のみで絞り込む

2013/5/30 -The easiest solution so far, is to put it to (very, very deep) sleep (the milisecond value translates roughly to 146.235.600 years).

2022/8/3 -... { Thread.sleep(Integer.MAX_VALUE); // Indefinitely delay MyObject } }. Notice that hacker code is getting a lock on the class monitor and not ...

Thread.sleep(Integer.MAX_VALUE); } catch(InterruptedException ex) { } } } }; Note that as the sleep never terminates the timer period is never restored by the ...

2024/8/25 -The method is used to pause the execution of the currently executing thread for a specified number of milliseconds or nanoseconds. Syntax:

2022/11/23 -The Java Thread.sleep() method can be used to pause the execution of the current thread for a specified time in milliseconds.

Sleep(Int32) ... Suspends the current thread for the specified number of milliseconds. public: static void Sleep(int millisecondsTimeout);. C#

2023/7/24 -Thread.sleep() stops the execution of a program in the current thread for a certain time as per the duration specified as a parameter.

2015/1/22 -The Thread.sleep() method essentially interacts with the thread scheduler to put the current thread into a wait state for the required interval.

2025/1/10 -The sleep() method is used to stop the execution of the current thread (whichever might be executing in the system) for a specific duration of time.

2023/2/15 -Thread.sleep(2000, 2000): The second parameter is an additional time in nanoseconds for which thread will sleep. It ranges from 0 to 999999.