大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全家桶1年46,售后保障稳定
scala 是一门 scalable 的语言,扩展性很强。
implicit
是 scala 的一个关键词,当它被用于 class 时,该类将被认为是implicit class
,它可以用来扩展现有类的行为和方法
以下在scala REPL中展示implicit class的作用
scala> "HAL".increment
<console>:8: error: value increment is not a member of String
"HAL".increment
scala> implicit class StringImprovement(val s:String){
| def increment = s.map(c=>(c+1).toChar)
| }
defined class StringImproment scala> "HAL".increment
res1: String = IBM
String变量是没有increment
方法的,所以一开始”HAL“.increment
会报错。
然后我们定义了一个implicit class StringImproment
,其中带有一个increment
方法,之后,String变量就带有该方法了,而我们不需要对String类做任何修改。
Implicit class 有这样的要求:
- 必须定义在类或者对象或包对象(Package object)作用域内,而不能作为顶级类型。
- 必须有一个primary constructor,并且只能接收一个参数(可以有多个implicit的参数)
在有implicit class之前,scala是用implicit method来支持该功能的。
可以参考这篇文章
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/234239.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...