常见的线程方法

tech2023-01-21  115

线程暂停加入主线程临时暂停 Thread t1 = new Thread(){...}; t1.start; try{ t1.sleep(1000);//使线程暂停1秒 t1.join;//使线程加入主线程,线程不结束,主线程不开始。 t1.yield;//临时暂停 }catch(){ } 设置线程优先级 Thread t1 = new Thread(){...}; Thread t2 = new Thread(){...}; t1.setPriority(Thread.MAX_PRIORITY); t2.setPriority(THread.MIN_PRIORITY); t1.start; t2.start; 守护线程:当一个进程里,所有的线程都是守护线程的时候,结束当前线程。 Thread t1 = new Thread(){...}; t1.setDaemon(true); t1.start;
最新回复(0)