| 
Scala example source code file (concat-two-strings.scala)
 The Scala concat-two-strings.scala source code
/** This doesn't test that the optimization is working, only that
 *  nothing is exploding.
 */
object Test {
  def f1(x: AnyRef)      = "" + x
  def f2(x: Int)         = "" + x
  def f3(x: Array[Char]) = "" + x
  def f4(x: List[Int])   = "" + x
  def f5(x: Any)         = "" + x
  def f6(x: AnyVal)      = "" + x
  
  def main(args: Array[String]): Unit = {
    List(f1("a"), f2(5), f3(null), f3(Array('a')), f4(List(1)), f5(null), f6(55d)) mkString ""
  }
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala concat-two-strings.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.