Đang chuẩn bị liên kết để tải về tài liệu:
Lập trình Java cơ bản : Multithreading part 4

Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ

Độ ưu tiên • Các tuyến trong Java có độ ưu tiên từ Thread.MIN_PRIORITY (giá trị 1) đến Thread.MAX_PRIORITY (giá trị 10) • Tuyến có độ ưu tiên càng cao thì càng sớm được thực hiện và hoàn thành. • Độ ưu tiên mặc định của các tuyến là Thread.NORM_PRIORITY (giá trị 5). • Một tuyến mới sẽ thừa kế độ ưu tiên từ tuyến tạo ra nó. | Ví dụ về đa tuyến class PrintThread extends Thread private int sleepTime public PrintThread String name super name sleepTime int Math.random 5000 System.out.println getName have sleep time sleepTime 16 Ví dụ về đa tuyến method run is the code to be executed by new thread public void run try System.out.println getName starts to sleep Thread.sleep sleepTime sleep may throw an InterruptedException catch InterruptedException e e.printStackTrace System.out.println getName done sleeping 17 Ví dụ về đa tuyến public class ThreadTest public static void main String args PrintThread thread1 new PrintThread thread1 PrintThread thread2 new PrintThread thread2 PrintThread thread3 new PrintThread thread3 System.out.println Starting threads thread1.start start and ready to run thread2.start start and ready to run thread3.start start and ready to run System.out.println Threads started main ends n