1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| package com.sympa.lesson01;
import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors;
public class TestPool {
public static void main(String[] args) {
ExecutorService service = Executors.newFixedThreadPool(10); service.execute(new MyThread()); service.execute(new MyThread()); service.execute(new MyThread()); service.execute(new MyThread());
service.shutdown(); }
}
class MyThread implements Runnable{ @Override public void run() { System.out.println(Thread.currentThread().getName()); } }
|