线程的方法一般都来自于Thread类,Thread 类的常用方法如下: 1.实例化 Runnnable接口 public Thread(Runnable barget) 2.实例化 Runnable接口并命名 public Thread(Runnable barget,String name) 3.实例化Thread 类对象并命名 public Thread(String name) 4.返回当前的线程 public static Thread currentThread() 5.返回线程的名字 public final String getName() 6.返回线程的优先级:public final int getPriority() 7.判断目前的线程是否被中断 是true 否 false public boolean isInterrupted() 8.判断线程是否还在活动 public Boolean isAlive() 9.等待线程死亡 public final void join() throws InterruptedException 10.等待毫秒死亡 public final synchronized void join(long millis) throws InterruptedException 11.执行线程 void run(); 12.设定线程的名字public final void setName(String name) 13.设定优先级 publicity final void setPriority(int priority) 14.让正在运行的线程休眠 毫秒 public static void sleep(long millis ) throws InterruptedException 15.开始执行线程 void start(); 16.暂停目前的线程 public static void yield() 17.设置成后台 public final void setDaemon(boolean on) file:///C:/Users/ADMINI~1/AppData/Local/Temp/ksohtml/wps_clip_image-7596.png |