作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Some
有什么区别和 Option
?
scala> Some(true)
res2: Some[Boolean] = Some(true)
scala> val x: Option[Boolean] = Some(true)
x: Option[Boolean] = Some(true)
scala> res2 == x
res3: Boolean = true
Option(null)
返回,而
Some(null)
不会编译:
scala> val x = Option(null)
x: Option[Null] = None
scala> val x: Option[Boolean] = Some(null)
<console>:7: error: an expression of type Null is ineligible for implicit conversion
val x: Option[Boolean] = Some(null)
^
最佳答案
那么,Some
扩展 Option
,因此它继承了除 get
之外的所有内容和 isEmpty
(以及由案例类实现的其他一些方法)。Option
的伴生对象有特价apply
处理方法null
:
def apply[A](x: A): Option[A] = if (x == null) None else Some(x)
Some.apply
只是标准
apply
为案例类生成的方法。
Some(null)
在某些情况下会编译,但它的类型是
Some[Null]
(或
Option[Null]
),只能在类型参数为
Option
时赋值是引用类型。
scala> val a = Some(null)
a: Some[Null] = Some(null)
scala> val b: Option[String] = Some(null)
b: Option[String] = Some(null)
Some[Null]
到
Option[Boolean]
,但是一个
Null
不是
Boolean
的子类型, 因为
Boolean
是值类型(底层的原始类型)并且不能保存值
null
.
关于Scala Some v. Option,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27626237/
我是一名优秀的程序员,十分优秀!