加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

关于Scala的解释与Option的理解

发布时间:2020-12-16 09:55:57 所属栏目:安全 来源:网络整理
导读:我有以下定义: def f: Option[String] = Some(null) 以下评估为无: for {x:String - f} yield { x} 以下评估为Some(null): for {x - f} yield { x} 以下评估为Some(null): f.map((x:String) = x) 我想知道为什么它们之间存在差异? 解决方法 desugaring
我有以下定义:

def f: Option[String] = Some(null)

以下评估为无:

for {x:String <- f} yield {
  x
}

以下评估为Some(null):

for {x <- f} yield {
  x
}

以下评估为Some(null):

f.map((x:String) => x)

我想知道为什么它们之间存在差异?

解决方法

desugaring发生在解析器中,所以-Xprint:parser显示了差异:

$scala -Xprint:parser
Welcome to Scala 2.12.1 (Java HotSpot(TM) 64-Bit Server VM,Java 1.8.0_111).
Type in expressions for evaluation. Or try :help.

scala> for (s: String <- (Some(null): Option[String])) yield s
[[syntax trees at end of                    parser]] // <console>
package $line3 {
  object $read extends scala.AnyRef {
    def <init>() = {
      super.<init>();
      ()
    };
    object $iw extends scala.AnyRef {
      def <init>() = {
        super.<init>();
        ()
      };
      object $iw extends scala.AnyRef {
        def <init>() = {
          super.<init>();
          ()
        };
        val res0 = (Some(null): Option[String]).withFilter(((check$ifrefutable$1) => check$ifrefutable$1: @scala.unchecked match {
  case (s @ (_: String)) => true
  case _ => false
})).map(((s: String) => s))
      }
    }
  }
}

res0: Option[String] = None

这让我感到惊讶,因为我认为以这种方式过滤是人们想要但未实现的功能.

类型模式只是一个测试实例,因此null无法通过该测试.

没有过滤器:

scala> for (s <- (Some(null): Option[String])) yield s
[[syntax trees at end of                    parser]] // <console>
package $line4 {
  object $read extends scala.AnyRef {
    def <init>() = {
      super.<init>();
      ()
    };
    object $iw extends scala.AnyRef {
      def <init>() = {
        super.<init>();
        ()
      };
      object $iw extends scala.AnyRef {
        def <init>() = {
          super.<init>();
          ()
        };
        val res1 = (Some(null): Option[String]).map(((s) => s))
      }
    }
  }
}

res1: Option[String] = Some(null)

在2.9:

$scala29
Welcome to Scala version 2.9.3 (OpenJDK 64-Bit Server VM,Java 1.6.0_38).
Type in expressions to have them evaluated.
Type :help for more information.

scala> for (s: String <- (Some(null): Option[String])) yield s
res0: Option[String] = Some(null)

所以在2.10.x中添加了过滤功能.

编辑:所以实际上,this是你没有得到的:

scala> for (s: String <- (Some("x"): Option[Any])) yield s
<console>:12: error: type mismatch;
 found   : String => String
 required: Any => ?
       for (s: String <- (Some("x"): Option[Any])) yield s
                      ^

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读