zoukankan      html  css  js  c++  java
  • Java8-Thread-No.01

    import java.util.concurrent.TimeUnit;
    
    public class Threads1 {
    
        public static void main(String[] args) {
            test1();
    //        test2();
    //        test3();
        }
    
        private static void test3() {
            Runnable runnable = () -> {
                try {
                    System.out.println("Foo " + Thread.currentThread().getName());
                    TimeUnit.SECONDS.sleep(1);
                    System.out.println("Bar " + Thread.currentThread().getName());
                }
                catch (InterruptedException e) {
                    e.printStackTrace();
                }
            };
    
            Thread thread = new Thread(runnable);
            thread.start();
        }
    
        private static void test2() {
            Runnable runnable = () -> {
                try {
                    System.out.println("Foo " + Thread.currentThread().getName());
                    Thread.sleep(1000);
                    System.out.println("Bar " + Thread.currentThread().getName());
                }
                catch (InterruptedException e) {
                    e.printStackTrace();
                }
            };
    
            Thread thread = new Thread(runnable);
            thread.start();
        }
    
        private static void test1() {
            Runnable runnable = () -> {
                String threadName = Thread.currentThread().getName();
                System.out.println("Hello " + threadName);
            };
    
            runnable.run();
    
            Thread thread = new Thread(runnable);
            thread.start();
    
            System.out.println("Done!");
        }
    }
    
  • 相关阅读:
    iOS 109个Demo范例
    iOS 109个Demo范例
    iOS 完全复制UIView
    iOS 完全复制UIView
    iOS 获取self类型
    Python 进阶_OOP 面向对象编程_类和继承
    Python 进阶_OOP 面向对象编程_类和继承
    Python 进阶_模块 & 包
    Python 进阶_模块 & 包
    Python 进阶_模块 & 包
  • 原文地址:https://www.cnblogs.com/bilaisheng/p/10210918.html
Copyright © 2011-2022 走看看