• Java多线程(二)、启动一个线程的3种方式


    package org.study.thread;
    
    /**
     * 启动一个线程的3种方式
     */
    public class TraditionalThread {
    
    	public static void main(String[] args) {
    		// 1. 继承自Thread类(这里使用的是匿名类)
    		new Thread(){
    			@Override
    			public void run() {
    				while(true) {
    					try {
    						Thread.sleep(500);
    					} catch (InterruptedException e) {
    						e.printStackTrace();
    					}
    					System.out.println("threadName: " + Thread.currentThread().getName());
    				}
    			};
    		}.start();
    		
    		// 2. 实现Runnable接口(这里使用的是匿名类)
    		new Thread(new Runnable() {
    			@Override
    			public void run() {
    				while(true) {
    					try {
    						Thread.sleep(500);
    					} catch (InterruptedException e) {
    						e.printStackTrace();
    					}
    					System.out.println("threadName: " + Thread.currentThread().getName());
    				}
    			}
    		}).start();
    		
    		// 3.即实现Runnable接口,也继承Thread类,并重写run方法
    		new Thread(new Runnable() {
    			@Override
    			public void run() {	// 实现Runnable接口
    				while(true) {
    					try {
    						Thread.sleep(500);
    					} catch (InterruptedException e) {
    						e.printStackTrace();
    					}
    					System.out.println("implements Runnable thread: " + Thread.currentThread().getName());
    				}
    			}
    		}) {	// 继承Thread类
    			@Override
    			public void run() {
    				while(true) {
    					try {
    						Thread.sleep(500);
    					} catch (InterruptedException e) {
    						e.printStackTrace();
    					}
    					System.out.println("extends Thread thread: " + Thread.currentThread().getName());
    				}
    			}
    		}.start();
    	}
    }


    执行结果:

    threadName: Thread-0

    threadName: Thread-1

    extends Thread thread: Thread-2

    threadName: Thread-1

    threadName: Thread-0

    extends Thread thread: Thread-2

    threadName: Thread-1

    threadName: Thread-0

    extends Thread thread: Thread-2

    。。。


  • 相关阅读:
    -1.#IND000 &&图像类型转换
    三维点集拟合:平面拟合、RANSAC、ICP算法
    深度学习:又一次推动AI梦想(Marr理论、语义鸿沟、视觉神经网络、神经形态学)
    三维重建:Kinect几何映射-SDK景深数据处理
    《SLIC Superpixels》阅读笔记
    中国企业系列
    关于抠图的一些文章方法收集
    数学空间引论
    PCL:解决PCL和OpenCV冲突的方法
    游戏开发:OpenGL入门学习
  • 原文地址:https://www.cnblogs.com/xyang0917/p/4172511.html
Copyright © 2020-2023  润新知