标签: scala
是否有单行(或功能方式)来执行此操作?
val a = b a.foreach(_.sideEffectFunc()) return a
答案 0 :(得分:4)
b.map(x => { x.sideEffectFunc(); x })