Scala 之 隐式值, 隐式函数和隐式类

  1. 先看一段代码,引出实际需求 => 指定某些数据类型的相互隐式转化
object Scala01 {
  def main(args: Array[String]): Unit = {
    val num: Int = 3.5 //?错 高精度->低精度
    println(num)
  }
}

  1. 隐式函数基本介绍:
    隐式转换函数是以 implicit 关键字声明的带有单个参数的函数。这种函数将会自动应用,将值从一
    种类型转换为另一种类型

代码演示

object ImplicitDemo01 {
  def main(args: Array[String]): Unit = {
    //编写一个隐式函数转成 Double->Int 转换 //隐式函数应当在作用域才能生效
    implicit def f1(d: Double): Int = { //底层 生成 f1$1
      d.toInt
    }
    val num: Int = 3.5 // 底层编译 f1$1(3.5) //idea ___ println("num =" + num)
  }
}
  1. 反编译后的代码

在这里插入图片描述

  1. 隐式转换的注意事项和细节
    1. 隐式转换函数的函数名可以是任意的,隐式转换与函数名称无关,只与函数签名(函数参数类 型和返回值类型)有关。
    2. 隐式函数可以有多个(即:隐式函数列表),但是需要保证在当前环境下,只有一个隐式函数能 被识别
object ImplicitDemo01 {
  def main(args: Array[String]): Unit = {
    //编写一个隐式函数转成 Double->Int 转换


    //隐式函数应当在作用域才能生效
    implicit def f1(d: Double): Int = { //底层 生成 f1$1
      d.toInt
    }

    implicit def f2(f: Float): Int = {
      f.toInt
    }

    //这里我们必须保证隐式函数的匹配只能是唯一的.
    //    implicit def f3(f1: Float): Int = {
    //      f1.toInt
    //    }

    val num: Int = 3.5 // 底层编译 f1$1(3.5)
    val num2: Int = 4.5f //
    println("num =" + num)

  }
}
  1. 隐式转换丰富类库功能

案例代码(使用隐式转换方式动态的给 MySQL 类增加 delete 方法 )

改变前:

class MySQL {
  def insert(): Unit = {
    println("insert")
  }
}

class DB {
  def delete(): Unit = {
    println("delete")
  }

  def update(): Unit = {
    println("update")
  }
}

class Dog {}

改变后:

object ImplicitDemo02 {
  def main(args: Array[String]): Unit = {
    //编写一个隐式函数,丰富 mySQL 功能
    implicit def addDelete(msql: MySQL): DB = {
      new DB
    }

    //创建 mysql 对象
    val mySQL = new MySQL
    mySQL.insert()
    mySQL.delete() // 编译器工作 分析 addDelete$1(mySQL).delete() mySQL.update()
  }


  class MySQL {
    def insert(): Unit = {
      println("insert")
    }
  }

  class DB {
    def delete(): Unit = {
      println("delete")
    }

    def update(): Unit = {
      println("update")
    }
  }

}

  1. 隐式值
    隐式值也叫隐式变量,将某个形参变量标记为 implicit,所以编译器会在方法省略隐式参数的情况 下去搜索作用域内的隐式值作为缺省参数
object ImplicitValDemo03 {
  def main(args: Array[String]): Unit = {
    implicit val str1: String = "jack~" //这个就是隐式值
    //implicit name: String :name 就是隐式参数
    def hello(implicit name: String): Unit = {
      println(name + " hello")
    }
    hello //底层 hello$1(str1); }
  }
}
  1. 一个案例说明 隐式值 ,默认值,传值的优先级
    1. 当在程序中,同时有 隐式值,默认值,传值
    2. 编译器的优先级为 传值 > 隐式值 > 默认值
    3. 在隐式值匹配时,不能有二义性
    4. 如果三个 (隐式值,默认值,传值) 一个都没有,就会报错
object ImplicitVal02 {
  def main(args: Array[String]): Unit = {
    //
    // 隐式变量(值)
    implicit val name: String = "Scala"

    //implicit val name1: String = "World"
    //隐式参数
    def hello(implicit content: String = "jack"): Unit = {
      println("Hello " + content)
    } //调用 hello
    hello

    //当同时有 implicit 值和默认值,implicit 优先级高
    def hello2(implicit content: String = "jack"): Unit = {
      println("Hello2 " + content)
    } //调用 hello
    hello2

    //implicit val name: Int = 10
    def hello3(implicit content: String = "jack"): Unit = {
      println("Hello3 " + content)
    } //调用 hello
    hello3 // hello3 jack
    //当没有隐式值,没有默认值,又没有传值,就会报错
    def hello4(implicit content: String): Unit = {
      println("Hello4 " + content)
    } //调用 hello
    hello4 // hello3 jack
  }
}
  1. 隐式类
    在 scala2.10 后提供了隐式类,可以使用 implicit 声明类,隐式类的非常强大,同样可以扩展类的功 能,比前面使用隐式转换丰富类库功能更加的方便,在集合中隐式类会发挥重要的作用。

    隐式类使用有如下几个特点:

    1. 其所带的构造参数有且只能有一个
    2. 隐式类必须被定义在“类”或“伴生对象”或“包对象”里,即隐式类不能是 顶级的(top-level-objects)。
    3. 隐式类不能是 case class(case class 在后续介绍 样例类) 4) 作用域内不能有与之相同名称的标识符
  2. 一个关于隐式类的案例,进一步认识隐式类

object ImplicitClassDemo {
  def main(args: Array[String]): Unit = {
    //DB1 会对应生成隐式类
    //DB1 是一个隐式类, 当我们在该隐式类的作用域范围,创建 MySQL1 实例 //该隐式类就会生效, 这个工作仍然编译器完成
    //看底层..
    implicit class DB1(val m: MySQL1) { //ImplicitClassDemo$DB1$2
      def addSuffix(): String = {
        m + " scala"
      }
    }
    //创建一个 MySQL1 实例
    val mySQL = new MySQL1
    mySQL.sayOk() //本身
    mySQL.addSuffix() //研究 如何关联到 DB1$1(mySQL).addSuffix();
  }
}

class DB1 {}

class MySQL1 {
  def sayOk(): Unit = {
    println("sayOk")
  }
}
  1. 隐式的转换时机

    1. 当方法中的参数的类型与目标类型不一致时, 或者是赋值时。
    2. 当对象调用所在类中不存在的方法或成员时,编译器会自动将对象进行隐式转换(根据类型)
  2. 隐式解析机制(即编译器是如何查找到缺失信息的):

    1. 首先会在当前代码作用域下查找隐式实体(隐式方法、隐式类、隐式对象)。(一般是这种情况
    2. 如果第一条规则查找隐式实体失败,会继续在隐式参数的类型的作用域里查找。类型的作用域
      是指与该类型相关联的全部伴生模块,一个隐式实体的类型 T 它的查找范围如下(第二种情况范围广且 复杂在使用时,应当尽量避免出现):
    1. 如果 T 被定义为 T with A with B with C,那么 A,B,C 都是 T 的部分,在 T 的隐式解析过程中, 它们的伴生对象都会被搜索。
    2. 如果 T 是参数化类型,那么类型参数和与类型参数相关联的部分都算作 T 的部分,比如 List[String]的隐式搜索会搜索 List 的伴生对象和 String 的伴生对象。
    3. 如果 T 是一个单例类型 p.T,即 T 是属于某个 p 对象内,那么这个 p 对象也会被搜索。
    4. 如果 T 是个类型注入 S#T,那么 S 和 T 都会被搜索
  3. 在进行隐式转换时,需要遵守两个基本的前提:

    1. 不能存在二义性
    2. 隐式操作不能嵌套使用
object ImplicitNotice {
  def main(args: Array[String]): Unit = {
    //1. 隐式转换不能有二义性 //2. 隐式转换不能嵌套使用
    implicit def f1(d: Double): Int = {
      d.toInt
      //val num2:Int = 2.3 //底层 f1$1(2.3) //f1$1 对应的就是 f1,就会形成递归
    }
    val num1: Int = 1.1
  }
}
  • 3
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

静谧之心

感谢您的鼓励!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值