#
一、scala的数据类型
scala> var b = "name"
b: String = name
scala> b="tel"
b: String = tel
scala>
使用编译器自动推断类型
2.3、懒加载变量