和c里的type有点像。
scala里的类型,除了在定义class
,trait
,object
时会产生类型,还可以通过type
关键字来声明类型。
type相当于声明一个类型别名:
scala> type S = String
defined type alias S
http://hongjiang.info/scala-type-system-type-keyword/
2023-12-28 19:39:58
和c里的type有点像。
scala里的类型,除了在定义class
,trait
,object
时会产生类型,还可以通过type
关键字来声明类型。
type相当于声明一个类型别名:
scala> type S = String
defined type alias S
http://hongjiang.info/scala-type-system-type-keyword/