alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (number-parsing.scala)

This example Scala source code file (number-parsing.scala) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

array, double, foo, foo, list, minuszero, minuszero, pluszero, pluszero, test, test, unit

The Scala number-parsing.scala source code

object Test {
  def numTests() = {
    val MinusZero = Float.box(-0.0f)
    val PlusZero  = Float.box(0.0f)
  
    assert(PlusZero match { case MinusZero => false ; case _ => true })
    assert(MinusZero match { case PlusZero => false ; case _ => true })
    assert((MinusZero: scala.Float) == (PlusZero: scala.Float))
    assert(!(MinusZero equals PlusZero))
  
    List(
      -5f.max(2) ,
      -5f max 2 ,
      -5.max(2) ,
      -5 max 2
    ) foreach (num => assert(num == 2))
  }

  case class Foo(val x: Double) {
    def unary_- : Foo = Foo(-x)
    def +(other: Foo): Foo = Foo(x + other.x)
  }
  def objTests = {
    assert(-Foo(5.0) + Foo(10.0) == Foo(5.0))
    assert(-Foo(5.0).+(Foo(10.0)) == Foo(-15.0))
  }

  def main(args: Array[String]): Unit = {
    numTests()
  }
}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala number-parsing.scala source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 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.