|
Scala example source code file (t4300.scala)
The Scala t4300.scala source codetrait A { def f() = println("A") } class B extends A { def b() = super[A].f() trait C { def c() = B.super[A].f() } def g() = for(i <- 0 until 1) super[A].f() def h() = for(i <- 0 until 1) B.super[A].f() override def f() = println("B") } object Test { def main(args : Array[String]) : Unit = { val b = new B() b.b() new b.C(){}.c() b.g() // was ClassCastException b.h() // was ClassCastException } } Other Scala examples (source code examples)Here is a short list of links related to this Scala t4300.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.