zoukankan      html  css  js  c++  java
  • 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.1Linux 系统简介(学习过程)
    1.12Linux下软件安装(学习过程)
    作业3.5
    作业1
    变量与基本数据类型
    python入门
    计算机基础知识补充
    计算机基础
  • 原文地址:https://www.cnblogs.com/xyang0917/p/4172511.html
Copyright © 2011-2022 走看看