Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Scala object containing the definition of a type. I am now willing to change the behavior of the type by overriding its equals method. Is it possibile?

The code I have right now is the following:

object CallGraph {
type CallTree = LinkedTree[Enter]
}

And I'd like to override the equal method for the CallTree type

share|improve this question
please explain more fully, and include code to show what you are asking. – dhg Sep 17 '12 at 15:24
2  
maybe you mean class CallTree extends LinkedTree[Enter] { override def equals(x: Any) = ... } – Luigi Plinge Sep 17 '12 at 15:57
That's probably better. Type works just for renaming, does it? – mariosangiorgio Sep 17 '12 at 16:02
3  
They are basically an alias, but you can also have abstract types which act like generics, so they're more than that. – Luigi Plinge Sep 17 '12 at 18:20
any answers to this? looking for the same thing – aepurniet Oct 30 '12 at 20:17
show 1 more comment

1 Answer

up vote 1 down vote accepted

What you have here is not a type definition but a type declaration. Something like type SomeName = SomeType is just an alias. In addition to just giving an alias like it is done here, a type declaration can include a type parameter and can also be used to declare the upper and lower bound of a type. In order to change override a method, you really need to define your new type using a class as already pointed out by Luigi Plinge.

share|improve this answer

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.