当前位置:   article > 正文

Java继承Thread类实现多线程_答题] 分析程序,写出结果class mythread1 extends thread{ priva

答题] 分析程序,写出结果class mythread1 extends thread{ private string na

1、新建一个类并继承Thread类

class MyThread extends Thread {
    private String title;

    public MyThread(String title) {
        this.title = title;
    }
}

public class TestThread {
    public static void main(String[] args) {

    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

2、覆写Thread类中的run()方法(线程的主体方法)

class MyThread extends Thread {
    private String title;

    public MyThread(String title) {
        this.title = title;
    }

    public void run() {
        for (int x = 0; x < 10; x++) {
            System.out.println(this.title + "运行,x =" + x);
        }
    }
}

public class TestThread {
    public static void main(String[] args) {

    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

3、多线程要执行的功能都应该在run()方法中定义,启动多线程必须使用start()方法,run()方法是顺序执行,start()方法是交替执行,执行顺序不可控,run()方法结果如下图
在这里插入图片描述

start()方法结果如下图
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小惠珠哦/article/detail/798576
推荐阅读
相关标签
  

闽ICP备14008679号