- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Access companion object's private values in companion class
Wed, 2009-03-11, 11:31
Hi guys,
reading the language spec
The private modifier can be used with any definition or declaration in a tem-
plate. Such members can be accessed only from within the directly enclosing
template and its companion module or companion class (§Example 5.4.1).
They are not inherited by subclasses and they may not override definitions in
parent classes.
I'd assume that the following piece of code would work
class C {
def test(){
println(C.x)
}
}
object C {
private val x = "xvalue"
def apply() = new C
}
val c = C()
c.test
but the interpreter comes around with
(fragment of access.scala):13: error: value x cannot be accessed in object C
println(C.x)
Obviously my assumption was wrong, but where's my failure?
Thanks a lot
Karsten
reading the language spec
The private modifier can be used with any definition or declaration in a tem-
plate. Such members can be accessed only from within the directly enclosing
template and its companion module or companion class (§Example 5.4.1).
They are not inherited by subclasses and they may not override definitions in
parent classes.
I'd assume that the following piece of code would work
class C {
def test(){
println(C.x)
}
}
object C {
private val x = "xvalue"
def apply() = new C
}
val c = C()
c.test
but the interpreter comes around with
(fragment of access.scala):13: error: value x cannot be accessed in object C
println(C.x)
Obviously my assumption was wrong, but where's my failure?
Thanks a lot
Karsten
object Foo {
class C {
def test(){
println(C.x)
}
}
object C {
private val x = "xvalue"
def apply() = new C
}
}
val c = new Foo.C
c.test
--j
On Wed, Mar 11, 2009 at 3:29 AM, Karsten Breit <kab@spreadshirt.net> wrote: