0
Что такое потоки в программировании?
Что такое потоки в Java? Для чего они применяются? Что делают методы setPriority() и sleep()? Как эти методы правильно прописывать в коде и где именно? Разъясните подробно на примерах.
4 ответов
+ 1
These codes might help-
https://code.sololearn.com/c0OnuURrc86W/?ref=app
https://code.sololearn.com/ch4n76K2b900/?ref=app
+ 1
https://www.sololearn.com/discuss/2161598/?ref=app
+ 1
Every thread has a priority which is 5 by default and the highest priority is 10. The priority decides that which thread has to be executed first. So setPriority() let's you set the priority of the thread.
The sleep() method in threads let's you give a pause between the next statement or thread to be executed.
+ 1
Thanks.:)