寫的一個scala多線程的小demo,以備後用java
Runnable/Callable多線程
區別:Runnable無返回值,Callable線程執行完有返回值ide
Runnable示例spa
import java.util.concurrent.{Executors, ExecutorService} object Test { def main(args: Array[String]) { //建立線程池 val threadPool:ExecutorService=Executors.newFixedThreadPool(5) try { //提交5個線程 for(i <- 1 to 5){ //threadPool.submit(new ThreadDemo("thread"+i)) threadPool.execute(new ThreadDemo("thread"+i)) } }finally { threadPool.shutdown() } } //定義線程類,每打印一次睡眠100毫秒 class ThreadDemo(threadName:String) extends Runnable{ override def run(){ for(i <- 1 to 10){ println(threadName+"|"+i) Thread.sleep(100) } } } }
Callable示例線程
import java.util.concurrent.{Callable, FutureTask, Executors, ExecutorService} object Test { def main(args: Array[String]) { val threadPool:ExecutorService=Executors.newFixedThreadPool(3) try { val future=new FutureTask[String](new Callable[String] { override def call(): String = { Thread.sleep(100) return "im result" } }) threadPool.execute(future) println(future.get()) }finally { threadPool.shutdown() } } }