- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Re: Scala object from Java
Fri, 2009-02-06, 00:23
>>>>> "Nils" == Nils Kilden-Pedersen writes:
Nils> How does one reference a Scala object (and companion object, if
Nils> it differs) from Java?
If you just have:
object S {
def foo = ...
}
You can refer to S itself from Java as S$.MODULE$ and if you want to
call foo you can just write S.foo().
If the object is a companion object:
class S { ... }
object S {
def foo = ...
}
then the shorthand S.foo() form won't be available and to call foo
you'll have to write S$.MODULE$.foo().