Scala特点
可扩展(A Scalable language):Scala is an acronym for “Scalable Language”. This means that Scala grows with you. You can play with it by typing one-line expressions and observing the results.
面向对象(Object-Oriented):Scala is a pure-bred object-oriented language. Conceptually, every value is an object and every operation is a method-call. The language supports advanced component architectures through classes and traits.
函数式编程(Functional):
类型推断(Type Inference)
省去异常检查(Unchecked Exception):不用写try catch了。