#Scala那些事# HList

有了HList,不用reflection,我们也可以拿到一个class的所有fields:

Import shapeless.{Generic, HNil, ::}

case class Cat(name: String, age: Int)

val gen: Generic.Aux[Cat, String :: Int :: HNil] = Generic[Cat]

val cat: Cat = Cat("kitten", 2)

val fields: String :: Int :: HNil = gen.to(cat)

val reconstructed: Cat = gen.from(fields)

是不是很神奇?!类似于Java里面用reflection来构建object,但是更加type safe。

上一篇:JPA中的主键生成策略


下一篇:源码编译生成工具protoc-gen-go