• 实现Callable接口实现线程创建及线程注意事项包括线程状态,一些API


    
    import java.util.concurrent.Callable;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.FutureTask;
    
    public class Test6 {
    
        public static void main(String[] args) {
            test2();
            test1();
            test();
        }
        static void test2(){
            //3.Callable
            // 3.1、创建Callable接口的实现类,实现call() 方法
            // 3.2、创建Callable实现类实例,通过FutureTask类来包装Callable对象,该对象封装了Callable对象的call()方法的返回值。
          // 3.3、将创建的FutureTask对象作为target参数传入,创建Thread线程实例并启动新程。
            // 3.4、调用FutureTask对象的get方法获取返回值。
            Test2 test2 = new Test2();
            FutureTask task = new FutureTask(test2);
            Thread thread = new Thread(task);
            //启动线程
            thread.start();
            //获取线程的返回值
            try {
                System.out.println(task.get().toString());
            } catch (InterruptedException e) {
                e.printStackTrace();
            } catch (ExecutionException e) {
                e.printStackTrace();
            }
    
        }
        static void test1(){
            //2.Runable 方式
            Thread t = new Thread(new Test1(), "乌龟");
            Thread r = new Thread(new Test1(), "兔子");
            //启动线程,不能多次调用
            t.start();
            r.start();
        }
        static void test(){
            //1.继承
            Test7 thread_1 = new Test7("thread_一");
            Test7 thread_2 = new Test7("thread_二");
            //启动start()
            thread_1.start();
            thread_2.start();
        }
    }
    //3.Callable
    class Test2 implements Callable<Integer>{
    
        @Override
        public Integer call() throws Exception {
            int sum=0;
            for(int i =1;i<=100;i++)
            {
                sum+=i;
            }
            return sum;
        }
    }
    
    
    //2.实现Runnable
    class Test1 implements Runnable{
    
        @Override
        public void run() {
            for (int i = 100;i>0;i--)
            {
                System.out.println(Thread.currentThread().getName()+":领先了,还剩多少米"+i);
            }
        }
    }
    
    //1.继承Thread
    class Test7 extends Thread{
        Test7(String name){
            super(name);
        }
        @Override
        public void run() {
            int i = 0;
            while (true){
                System.out.println(getName()+"=="+i);
                i++;
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91

    运行截图
    请添加图片描述
    请添加图片描述
    请添加图片描述

    线程注意事项

    start(启动线程)不能多次调用
    线程状态:
    新建:新建对象,未获得资源
    就绪:获得除cpu以外的以外资源
    运行:获得cpu使用权
    等待/阻塞:中途停止cpu使用,即阻塞,等待重新进入就绪状态
    死亡:系统回收利用资源

    API

    获取当前线程的名字:currentThread().getName()
    sleep()休眠当前执行的线程
    yield()获得的时间片让出,使得成为最后执行的线程
    interrupted()判断当前线程是否中断
    setPriority()设置优先级
    改变共享变量值中断run()执行
    interrupt()抛出中断被阻塞进程异常,使得提前结束阻塞状态

  • 相关阅读:
    js获取对象的属性值
    分类预测 | Matlab实现PSO-GRU-Attention粒子群算法优化门控循环单元融合注意力机制多特征分类预测
    商城项目14_商品新增vo抽取、修改vo、新增逻辑、代码的具体落地、SPU检测、SKU检测、流程图
    武汉站--ChatGPT/GPT4科研技术应用与AI绘图及论文高效写作
    java计算机毕业设计网上书店管理系统源码+系统+数据库+lw文档+mybatis+运行部署
    互联网摸鱼日报(2023-10-19)
    汽车辅助系统
    网络安全(黑客)自学
    memmove函数详解 看这一篇就够了-C语言(函数讲解、函数实现、使用用法举例、作用、自己实现函数 )
    【leetcode】【2022/8/22】655. 输出二叉树
  • 原文地址:https://blog.csdn.net/m0_59416550/article/details/126604866