Scala中隐式参数实战详解以及隐式参数在Spark中的应用源码解析之Scala学习笔记-50

package com.leegh.implicits

/**
* @author Guohui Li
*/
object Context_Implicits {
implicit val default: String = "java"
}

object Param {
def print(content: String)(implicit language: String) {
println(language + ":" + content)
}
}

object Context_Parameters {

def main(args: Array[String]): Unit = {
Param.print("Spark")("Scala")

import Context_Implicits._
Param.print("Hadoop")
}
}

附:

本博客说明:

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

时间: 2024-10-03 14:06:29

Scala中隐式参数实战详解以及隐式参数在Spark中的应用源码解析之Scala学习笔记-50的相关文章

Scala中隐式转换内幕操作规则揭秘、最佳实践及其在Spark中的应用源码解析之Scala学习笔记-55

package com.leegh.implicits import scala.io.Sourceimport java.io.File /** * @author Guohui Li */class RicherFile(val file: File) { def read = Source.fromFile(file.getPath).mkString} class File_Implicits(path: String) extends File(path)//伴生对象object Fi

Scala中隐式参数与隐式转换的联合使用实战详解及其在Spark中的应用源码解析之Scala学习笔记-51

package com.leegh.implicits /** * @author Guohui Li */ object Implicit_Conversions_with_Implicit_Parameters { def main(args: Array[String]): Unit = { def bigger[T](a: T, b: T)(implicit ordered: T => Ordered[T]) = if (ordered(a) > b) a else b println

Scala中隐式转换初体验实战详解以及隐式转换在Spark中的应用源码解析之Scala学习笔记-49

package com.leegh.implicits import scala.io.Sourceimport java.io.File /** * @author Guohui Li */ class RichFile(val file: File) { def read = Source.fromFile(file.getPath()).mkString}object Context { implicit def file2RichFile(file: File) = new RichFi

Scala类型约束代码实战及其在Spark中的应用源码解析之Scala学习笔记-39

package com.leegh.parameterization /** * @author Guohui Li */object Type_Contraints { def main(args: Array[String]): Unit = { def rocky[T](i: T)(implicit ev: T <:< java.io.Serializable) { println("Life is too short,you need Spark!") } rock

Scala中Context Bounds代码实战及其在Spark中的应用源码解析之Scala学习笔记-36

package com.leegh.parameterization /** * @author Guohui Li */ class Pair_Ordering[T: Ordering](val first: T, val second: T) { def bigger(implicit ordered: Ordering[T]) = { if (ordered.compare(first, second) > 0) first else second }} object Context_Bo

Scala中类型变量Bounds代码实战及其在Spark中的应用源码解析之Scala学习笔记-34

package com.leegh.parameterization /** * @author Guohui Li */class Pair[T <: Comparable[T]](val first: T, val second: T) { def bigger = if (first.compareTo(second) > 0) first else second} class Pair_Lower_Bound[T](val first: T, val second: T) { def

Scala中Variance代码实战及其在Spark中的应用源码解析之Scala学习笔记-40

package com.leegh.parameterization /** * @author Guohui Li */ class Personclass Student extends Personclass C[+T](val args: T) trait Friend[-T] { def makeFriend(somebody: T)}object Variance { def makeFriendWithYou(s: Student, f: Friend[Student]) { f.

ClassTag 、Manifest、ClassManifest、TypeTag代码实战及其在Spark中的应用源码解析之Scala学习笔记-37

package com.leegh.parameterization import scala.reflect.ClassTag /** * @author Guohui Li */class A[T] object Manifest_ClassTag { def main(args: Array[String]): Unit = { def arrayMake[T: Manifest](first: T, second: T) = { val r = new Array[T](2); r(0)

Scala中View Bounds代码实战及其在Spark中的应用源码解析之Scala学习笔记-35

package com.leegh.parameterization /** * @author Guohui Li */class Pair_NotPerfect[T <% Comparable[T]](val first: T, val second: T) { def bigger = if (first.compareTo(second) > 0) first else second} //class Pair_NotPerfect[T <: Comparable[T]](val