scala设计模式--装饰模式_scala 装饰模式-CSDN博客

网站介绍:文章浏览阅读409次。装饰模式trait Fruits { def price(): Double def name(): String}trait Apple extends Fruits { abstract override def price() = super.price..._scala 装饰模式