Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to import a bunch of methods from one class to another without extending it. I've made it work but why one approach works and the other doesn't is beyond me.

Stripped down, here is what I'm trying to do

class A {def x() {println("x")}}
object A

class B {
   import A._
   def y() {x()}
}

And the compiler tells me "not found: value x"

But it works if I do either this

class C extends A

class B {
   import C._

or if I do this

object C extends A

class B {
   import C._

Can someone explain why this is the case?

share|improve this question
1  
Your second example (class C extends A; import C._) will not work either... – sschaef Jun 15 '12 at 15:43

1 Answer

up vote 3 down vote accepted

The reason why your code example class C extends A is not working is that you import class members which can only exist in the class they are defined.

Whereas when you write object C extends A you will create a singleton (in Scala called object like the keyword) which represents an instance and allows you to import its members.

So, to make members of other classes visible you always have to extend them, either by an object or by another class/trait. It is not enough to declare a companion object of a class because it does not hold an instance of its companion class.

share|improve this answer
Thanks! I did not know that "It is not enough to declare a companion object of a class because it does not hold an instance of its companion class." – JasonMond Jun 15 '12 at 16:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.