zoukankan      html  css  js  c++  java
  • Java多线程和并发(二),Thread中的start和run的区别

    目录

    1.调用run方法

    2.调用start方法

    3.start和run的区别

    二、Thread中的startrun的区别

    1.调用run方法

    public class ThreadTest {
        private static void attack() {
            System.out.println("Current Thread is : " + Thread.currentThread().getName());
        }
    
        public static void main(String[] args) throws InterruptedException {
            Thread t = new Thread(){
                @Override
                public void run() {
                    attack();
                }
            };
            System.out.println("current main thread is : " + Thread.currentThread().getName());
            t.run();
        }

     显示线程只有一个,即main线程

    2.调用start方法

    public class ThreadTest {
        private static void attack() {
            System.out.println("Current Thread is : " + Thread.currentThread().getName());
        }
    
        public static void main(String[] args) throws InterruptedException {
            Thread t = new Thread(() -> attack());
            System.out.println("current main thread is : " + Thread.currentThread().getName());
            t.start();
        }
    }


     
    我们是用
    lambda表达式来重写的Thread类,这个时候就会创建一个新的线程

    3.startrun的区别

     

  • 相关阅读:
    docker中 启动所有的容器命令
    使用Docker部署服务
    docker常规操作——启动、停止、重启容器实例
    Docker Swarm 常用命令
    ArcGIS中search窗口不能查询解决办法
    ylpy
    第7章
    ArcGIS 将模型导出为 Python 脚本
    11章代码
    9章代码
  • 原文地址:https://www.cnblogs.com/xzmxddx/p/10362802.html
Copyright © 2011-2022 走看看