thread 方法

1.getName()返回线程名称;用法:Thread.CurrentThread.getName();

2.setDaemon()设置是否为守护线程:实例t1.setDaemon(true);

3.sleep(n)方法(static),让线程停滞n毫秒。Thread.sleep(1000),让线程停滞1秒

4.join()方法等待该线程终止。

5.yield()方法,暂停该线程(不是绝对的暂停,只是大大降低该线程执行概率)。

6.setPriority(1-10)设置线程优先级

你可能感兴趣的:(thread 方法)