目录
- 概述
- 实践
- 代码
- 测试
- 结束
概述
隐式转换函数
类似 java 中的切面编程,对原有类功能做增加。
实践
代码
封装代码如下
package com.fun.scala.demo
import java.io.File
/**
* 类似java切面的东东
*/
object ImplicitAspect {
implicit def man2SuperMan(man: Man): SuperMan = new SuperMan(man.name)
implicit def file2RichFile(file: File) = new RichFile(file)
}
package com.fun.scala.demo
import java.io.File
import scala.io.Source
import ImplicitAspect._
object ImplicitApp {
def main(args: Array[String]): Unit = {
// implicit 2 = to 等价 :定义隐式转换函数
// implicit def a2B(a:A):B =new B(a.)
val man = new Man("测试")
man.fly()
val file = new File("data/wc.data")
println(file.read())
}
}
class Man(val name: String)
class SuperMan(val name: String) {
def fly(): Unit = {
println(s"$name fly ...")
}
}
/**
* 隐式转换 常用命名:RichXxx
*/
class RichFile(val file: File) {
def read() = Source.fromFile(file.getPath, "utf-8").mkString
}
测试
结束
隐式转换函数的封装 至此结束。