一.scala模式匹配(pattern matching) pattern matching可以说是scala中十分强大的一个语言特性,当然这不是scala独有的,但这不妨碍它成为scala的语言的一大利器. scala的pattern matching是类似这样的, e match { case Pattern1 => do Something case Pattern2 if-clause => do others ... } 其中,变量e后面接一个match以及一个代码块,其中每个cas…