This page is no longer maintained — Please continue to the home page at www.scala-lang.org
>>>>> "Paul" == Paul Phillips writes:
Paul> trait T extends C { override def x = "bar" }
Great, thanks! (I had just assumed a trait couldn't extend a class.)
>>>>> "Paul" == Paul Phillips <paulp@improving.org> writes: Paul> trait T extends C { override def x = "bar" } Great, thanks! (I had just assumed a trait couldn't extend a class.) -- Seth Tisue / http://tisue.net lead developer, NetLogo: http://ccl.northwestern.edu/netlogo/
Create new account
Retrieve lost password
Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland
trait R {
self: C =>
override def foo: String = "WOof"
}
trait B {
self: {def foo: String} =>
override def foo: String = "WOof"
}
The latter, especially, seems to be the most flexible.
Thanks,
David
On Wed, Dec 31, 2008 at 8:51 AM, Seth Tisue <seth@tisue.net> wrote:
--
Lift, the simply functional web framework http://liftweb.net
Collaborative Task Management http://much4.us
Follow me: http://twitter.com/dpp
Git some: http://github.com/dpp