This page is no longer maintained — Please continue to the home page at www.scala-lang.org

String.format

1 reply
Baldur Norddahl
Joined: 2009-02-01,
User offline. Last seen 42 years 45 weeks ago.
Hi

In my Java live i often use String.format. However Scala seems to handle this method poorly, as can be seen in this example:

Welcome to Scala version 2.7.3final (Java HotSpot(TM) Server VM, Java 1.6.0_10).
Type in expressions to have them evaluated.
Type :help for more information.

scala> String.format("hi: %d",5)
<console>:5: error: type mismatch;
 found   : Int
 required: java.lang.Object
Note that implicit conversions are not applicable because they are ambiguous:
 both method int2Integer in object Predef of type (Int)java.lang.Integer
 and method intWrapper in object Predef of type (Int)scala.runtime.RichInt
 are possible conversion functions from Int to java.lang.Object
       String.format("hi: %d",5)
              ^

scala> String.format("hi: %d",5.asInstanceOf[Object])
res1: java.lang.String = hi: 5

Is this an oversight in the design of the language? The integer value does not really need any of the implicits, it should just be passed as is. I need to use asInstanceOf[Object] to force the compiler to realise this.

Thanks,

Baldur

Stuart Cook
Joined: 2008-12-24,
User offline. Last seen 42 years 45 weeks ago.
Re: String.format

On Mon, Feb 2, 2009 at 1:34 AM, Baldur Norddahl
wrote:
> In my Java live i often use String.format. However Scala seems to handle
> this method poorly, as can be seen in this example:

Scala adds a non-static "format" method to Strings (via RichString),
which has a more suitable type. (Specifically, it takes Any* instead
of Object*.) So instead of:

String.format"hi: %d", 5)

try writing

"hi: %d".format(5)

Stuart

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland