在scala中是没有原生线程的,其底层使用的是java的Thread机制.但是在scala中对java Thread进行了封装,实现了更便于操作线程的Future. 官方文档: Futures provide a way to reason about performing many operations in parallel– in an efficient and non-blocking way. 在使用的时候只需要通过object Future 的apply方法传入执行体即可启动,那么…
try 表达式 var result = try{ Integer.parseInt("dog") }catch{ case _ => 0 }finally{ println("excute") } match 表达式 val code = 3 var result = code match{ case 1 => "one" case 2 => "two" case _ => "others&…