|
Scala example source code file (caseclasses.scala)
The Scala caseclasses.scala source codecase class Foo(x: Int)(y: Int) case class Bar abstract class Base abstract case class Abs(x: Int) extends Base object M { abstract case class C(x: String) {} object C extends (String => C) { def apply(x: String): C = { println("creating C("+x+")") new C(x) {} } } } object Test extends App { def Abs(x: Int) = new Abs(x * 2){} Abs(2) match { case Abs(4) => ; } def fn[a,b](x: a => b) = x; val f = fn(Foo(1)) (f(2): AnyRef) match { case Foo(1) => Console.println("OK") case Bar() => Console.println("NO") } try { Bar() productElement 3 throw new NullPointerException("duh") } catch { case x:IndexOutOfBoundsException => } M.C("hi") match { case M.C("hi") => println("OK") case _ => println("NO") } try { f(2) productElement 3 throw new NullPointerException("duh") } catch { case x:IndexOutOfBoundsException => } } Other Scala examples (source code examples)Here is a short list of links related to this Scala caseclasses.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.