stringadd.scala

来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 42 行

SCALA
42
字号
/*                                                                      *\**     ________ ___   __   ___     Scala API                            ****    / __/ __// _ | / /  / _ |    (c) 2002-2007, LAMP/EPFL             ****  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **** /____/\___/_/ |_/____/_/ |_|                                         ****                                                                      **\*                                                                      */// $Id: StringAdd.scala 14532 2008-04-07 12:23:22Z washburn $package scala.runtimeimport Predef._object StringAdd {  // Needed for the format hack. Can be removed once we drop 1.4  lazy val formatMethod: java.lang.reflect.Method = {    val paramTypes = Array[Class[T] forSome { type T }](classOf[String], classOf[Array[Object]])    classOf[String].getDeclaredMethod("format", paramTypes)  }}final class StringAdd(self: Any) {  def +(other: String) = self.toString + other  /** Returns string formatted according to given <code>format</code> string.   *  Format strings are as for <code>String.format</code>   *  (@see java.lang.String.format).   *  Only works on Java 1.5 or higher!   */  def formatted(format: String): String = {    // This should be:    // String.format(format, Array(self.asInstanceOf[Object]))    // However, the line above does not compile on Java 1.4 because String.format exists only in 1.5    // Therefore, we do the following hack:    val args = Array(self.asInstanceOf[Object])    StringAdd.formatMethod.invoke(null, Array[Object](format, args)).asInstanceOf[String]  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?