zoukankan      html  css  js  c++  java
  • java创建线程的几种方式

    1.继承Thread类

    /**
     * @author Ash
     * @date: 2016年8月6日 下午10:56:45 
     * @func: 通过继承Thread类来实现多线程
     * @email 408657544@qq.com
     * @Copyright: 2016 Ash. All rights reserved.
     */
    public class ExtendsThread extends Thread{
        public static void main(String[] args) {
            new ExtendsThread().start();
        }
        public void run() {
            System.out.println("hello");
        }
    }

    2.实现Runnable接口

    package com.test.thread;
    
    public class ImplementsRunable {
        public static void main(String[] args) {
            new Thread(new Task()).start();
        }
    }
    class Task implements Runnable {
        @Override
        public void run() {
            // TODO Auto-generated method stub
            System.out.println("hello");
        }
    }

    3.使用线程池

    public class CallableFutureSample {
        public static void main(String[] args) throws InterruptedException, ExecutionException {
            ExecutorService pool = Executors.newCachedThreadPool();
            for (int i = 0; i < 3; i++) {
                System.out.println(pool.submit(new Task3(i+"")).get());
            }
            pool.shutdown();
        }
    }
    
    class Task3 implements Callable<String> {
    
        private String taskname;
        public Task3(String taskname) {
            this.taskname=taskname;
        }
        @Override
        public String call() throws Exception {
            return taskname+" started";
        }
    }
  • 相关阅读:
    java中Calendar类里面的月份是月份数减一。
    hdu oj
    存在重复元素
    杨辉三角
    删除链表的倒数第n个结点
    相交链表
    环形链表 II
    环形链表
    至少是其他数字两倍的最大数
    寻找数组的中心索引
  • 原文地址:https://www.cnblogs.com/heben/p/5745264.html
Copyright © 2011-2022 走看看