|
Scala example source code file (bug789.scala)
The Scala bug789.scala source code
object main { // don't do this at home
trait Impl
trait SizeImpl extends Impl { def size = 42 }
trait ColorImpl extends Impl { def color = "red" }
type Both = SizeImpl with ColorImpl
def info(x:Impl) = x match {
case x:Both => "size "+x.size+" color "+x.color // you wish
case x:SizeImpl => "size "+x.size
case x:ColorImpl => "color "+x.color
case _ => "n.a."
}
def info2(x:Impl) = x match {
case x:SizeImpl with ColorImpl => "size "+x.size+" color "+x.color // you wish
case x:SizeImpl => "size "+x.size
case x:ColorImpl => "color "+x.color
case _ => "n.a."
}
def main(args:Array[String]): Unit = {
// make up some class that has a size
class MyNode extends SizeImpl
Console.println("hello " + info(new MyNode))
Console.println("hello " + info2(new MyNode))
}
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala bug789.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.