码迷,mamicode.com
首页 > 其他好文 > 详细

Scala中链式调用风格的实现代码实战及其在Spark编程中的广泛运用之Scala学习笔记-41

时间:2015-09-03 13:58:21      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

package com.leegh.parameterization

/**
* @author Guohui Li
*/
//由于breathe返回的是this,scala将返回类型推断为Animal,而由于Animal没有eat方法
//class Animal { def breathe = this }
//class Cat extends Animal { def eat = this }

class Animal { def breathe: this.type = this }
class Cat extends Animal { def eat: this.type = this }

object Singleton_Types {
def main(args: Array[String]): Unit = {
val cat = new Cat
cat.breathe.eat
}
}

 

附:

本博客说明:

1.整理思路,提高自己。

2.受教于王家林老师,?有所收获,故推荐。

3.博客注重实践,多余的文字就不多说了,都是做技术的。

4.信息来源于 DT大数据梦工厂微信公众账号:DT_Spark。?

DT大数据梦工厂的微信公众号是DT_Spark,每天都会有大数据实战视频发布,请您持续学习。

王家林DT大数据梦工厂scala的所有视频、PPT和代码在百度云盘的链接:http://pan.baidu.com/share/home?uk=4013289088#category/type=0&qq-pf-to=pcqq.group

王家林《Scala深入浅出实战初级入门经典视频课程》http://edu.51cto.com/lesson/id-66538.html

王家林《Scala深入浅出实战中级进阶经典视频课程》http://edu.51cto.com/lesson/id-67139.html

 

Scala中链式调用风格的实现代码实战及其在Spark编程中的广泛运用之Scala学习笔记-41

标签:

原文地址:http://www.cnblogs.com/leegh1992/p/4780106.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!