1、getName

  • thread.getName()
  • 获取当前运行的线程:Thread.currentThread()

    1. public class Main {
    2. public static void main(String[] args) {
    3. MyThread t1 = new MyThread();
    4. t1.start();
    5. MyThread t2 = new MyThread();
    6. t2.start();
    7. }
    8. static class MyThread extends Thread{
    9. @Override
    10. public void run() {
    11. // Thread-1
    12. String name = getName();
    13. System.out.println(name);
    14. // Thread[Thread-1,5,main]
    15. Thread thread = Thread.currentThread();
    16. System.out.println(thread);
    17. // Thread-1
    18. String threadName = thread.getName();
    19. System.out.println(threadName);
    20. }
    21. }
    22. }

    2、setName

  • 设置线程名

    1. MyThread t1 = new MyThread();
    2. t1.setName("t1");
    3. t1.start();
    4. MyThread t2 = new MyThread();
    5. t2.setName("t2");
    6. t2.start();
    7. // 构造方法传入线程名
    8. Thread thread = new Thread("thread-name");

    3、sleep

  • 让当前线程暂时执行一段时间

  • Thread类的静态native方法

    public static native void sleep(long millis) throws InterruptedException;

  1. new Thread(new Runnable() {
  2. @Override
  3. public void run() {
  4. for (int i = 0; i < 60; i++) {
  5. System.out.println(i);
  6. try {
  7. Thread.sleep(1000);
  8. } catch (InterruptedException e) {
  9. e.printStackTrace();
  10. }
  11. }
  12. }
  13. }).start();

4、join

  • 把指定的线程加入到当前线程中,可以将两个交替执行的线程合并为顺序执行的线程。
  • 比如在B线程中执行线程A的join方法,a.join(),那么B线程就会暂停执行,先等A线程执行完毕,B线程再重新进入可运行状态。 ```json

    1. Thread thread1 = new Thread(new Runnable() {
    2. @Override
    3. public void run() {
    4. System.out.println("thread1 start");
    5. try {
    6. Thread.sleep(5000);
    7. } catch (InterruptedException e) {
    8. e.printStackTrace();
    9. }
    10. System.out.println("thread1 end");
    11. }
    12. });
    13. thread1.start();
    14. Thread thread2 = new Thread(new Runnable() {
    15. @Override
    16. public void run() {
  1. System.out.println("thread2 start");
  2. try {
  3. System.out.println("thread1 join 1");
  4. thread1.join();
  5. System.out.println("thread1 join 2");
  6. } catch (InterruptedException e) {
  7. e.printStackTrace();
  8. }
  9. try {
  10. Thread.sleep(5000);
  11. } catch (InterruptedException e) {
  12. e.printStackTrace();
  13. }
  14. System.out.println("thread2 end");
  15. }
  16. });
  17. thread2.start();
  1. <a name="Y2DOy"></a>
  2. ### 5、yield
  3. - 让当前线程从运行状态RUNNING 转为 就绪状态READY,以允许具有相同优先级的其他线程获得运行机会。
  4. - yield 是一个静态的原生(native)方法。
  5. - yield 告诉当前正在执行的线程把运行机会交给线程池中拥有相同优先级的线程。
  6. - yield 不能保证使得当前正在运行的线程迅速转换到可运行的状态。
  7. - 它仅能使一个线程从运行状态转到可运行状态,而不是等待或阻塞状态。
  8. - 无法保证yield()达到让步目的,因为让步的线程还有可能被线程调度程序再次选中。
  9. <a name="ly1y9"></a>
  10. #### 代码例子
  11. - 下列代码的执行结果
  12. > 可能结果1
  13. > threads1:start
  14. > threads1:end
  15. > threads0:start
  16. > threads0:end
  17. > 可能结果2
  18. > threads0:start
  19. > threads1:start
  20. > threads0:end
  21. > threads1:end
  22. - 结论:无法保证yield()达到让步目的,因为让步的线程还有可能被线程调度程序再次选中。
  23. ```json
  24. Thread[] threads = new Thread[2];
  25. for (int i=0;i<2;i++){
  26. int index=i;
  27. threads[i] = new Thread(new Runnable() {
  28. @Override
  29. public void run() {
  30. System.out.println("threads"+index+":start");
  31. Thread.yield();
  32. System.out.println("threads"+index+":end");
  33. }
  34. });
  35. threads[i].start();
  36. }