Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scala - parameter of type T or => T

Is there any difference between the following

def foo(s: String) = { ... }

and

def foo(s: => String) { ... }

both these definitions accept "sss" as parameter.

like image 591
Bober02 Avatar asked Nov 30 '22 14:11

Bober02


1 Answers

An argument String is a by-value parameter, => String is a by-name parameter. In the first case, the string is passed in, in the second a so-called thunk which evaluates to a String whenever it is used.

def stringGen: String = util.Random.nextInt().toString

def byValue(s: String) =
  println("We have a '" + s + "' and a '" + s + "'")

def byName(s: => String) =
  println("We have a '" + s + "' and a '" + s + "'")

byValue(stringGen)  // constant value
byName (stringGen)  // evaluated twice

Often a by-name parameter is not used to evaluate it several times, but to lazily evaluate it once.

def logMessage = {
  println("Calculating log message...")
  new java.util.Date().toString
}

def log(enabled: Boolean, message: => String): Unit = {
  lazy val fullMessage = "LOG: " + message
  println("Test")
  if (enabled) println(fullMessage)
}

log(false, logMessage)
log(true , logMessage)
like image 123
0__ Avatar answered Dec 02 '22 02:12

0__