scala让人动心的理由

1. implict type,隐式类和隐式参数,这些为dsl提供了强大功能,比如可以为某个类添加本来没有的方法
2. 字符串/字符重复的方法 *,    字符串表达式  s"hello $name"
3. 丰富的集合类,强大的集合方法 foldLeft,map,filter,groupBy,collect, first, last, tail, zip,fill
4. 懒集合
     Stream流是lazy集合。lazy意味着集合中的元素是在需要时才计算的。#:: 是流的元素添加运算符。
5.  scala即时对象  比如 
     new {
          val id = 3
          val name = "tom"
     }
6. 高阶函数,函数组合
     https://twitter.github.io/scala_school/pattern-matching-and-functional-composition.html
 
8. 模式匹配 case表达式
9. 偏函数
10. 丰富的并发特性,异步编程,比如future,提供了回调 onSuccess等
11. actor模型
12. 可以定义类型别名,如
     type Url = String
 
13. 丰富强大的泛型,  虽然有些很复杂 ,但你可以选择简单的方式
14.不变的变量,类,这些特性保证了并发数据的安全性
15. 可以定义任何运算符为函数
16.省略了很多不必要的括号,逗号,节省代码编写效率
 

你可能感兴趣的:(scala)