我想使用静态方法Integer#bitCount(int)
。
但是我发现我无法使用类型别名来实现它。类型别名和导入别名之间有什么区别?
scala> import java.lang.{Integer => JavaInteger}
import java.lang.{Integer=>JavaInteger}
scala> JavaInteger.bitCount(2)
res16: Int = 1
scala> type F = java.lang.Integer
defined type alias F
scala> F.bitCount(2)
<console>:7: error: not found: value F
F.bitCount(2)
^
最佳答案
在Scala中,它具有伴随单例对象,而不是使用静态方法。
伴随单例对象的类型不同于伴随类,并且类型别名与类(而不是单例对象)绑定。
例如,您可能具有以下代码:
class MyClass {
val x = 3;
}
object MyClass {
val y = 10;
}
type C = MyClass // now C is "class MyClass", not "object MyClass"
val myClass: C = new MyClass() // Correct
val myClassY = MyClass.y // Correct, MyClass is the "object MyClass", so it has a member called y.
val myClassY2 = C.y // Error, because C is a type, not a singleton object.