Scala链式编程内幕

Posted yszd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Scala链式编程内幕相关的知识,希望对你有一定的参考价值。

 1 package big.data.analyse.scala
 2 
 3 /**
 4   * 链式编程原理
 5   * Created by zhen on 2018/12/16.
 6   */
 7 class Computer{def code = this}
 8 class PC extends Computer{def portable = this}
 9 /**
10   * 使用type可以根据当前情况转化类型实现链式编程
11   */
12 class Car{def run : this.type = this}
13 class Roadster extends Car{def luxury : this.type = this}
14 object Lsbc {
15   def main (args: Array[String]) {
16     val pc = new PC()
17     //pc.code.portable // Cannot resolve symbol portable
18     val roadster = new Roadster()
19     roadster.run.luxury
20   }
21 }

 

以上是关于Scala链式编程内幕的主要内容,如果未能解决你的问题,请参考以下文章

Scala语言基础之结合demo和spark讲实现链式计算

我将如何在 Scala 中表达链式赋值?

kafra技术内幕:消费者初始化(scala)

scala编程——函数和闭包

Scala的面向对象与函数编程

详解 Scala 模式匹配