A simple Scala call-by-name example


Here's a simple Scala call-by-name example. I'll show the normal approach to writing a method and passing in a parameter, and then show a call-by-name (pass by name) example.

1) A "normal" Scala method

Here I show how to pass a parameter to a method "normally", i.e., call by value:

object Test extends App {

  def time(): Long = {
      println("In time()")
      System.nanoTime
  }

  def exec(t: Long): Long = {
      println("Entered exec, calling t ...")
      println("t = " + t)
      println("Calling t again ...")
      t
  }

  println(exec(time()))

}

The output looks like this:

In time()
Entered exec, calling t ...
t = 1363909521286596000
Calling t again ...
1363909521286596000

As expected, the values for t are the same. This is because the value of t is determined when this line is invoked:

println(exec(time()))

2) A call by name example

Next, make the method parameter a call by name parameter:

object Test extends App {

  def time() = {
      println("Entered time() ...")
      System.nanoTime
  }

  // uses a by-name parameter here
  def exec(t: => Long) = {
      println("Entered exec, calling t ...")
      println("t = " + t)
      println("Calling t again ...")
      t
  }

  println(exec(time()))

}

This time the output is different:

Entered exec, calling t ...
Entered time() ...
t = 1363909593759120000
Calling t again ...
Entered time() ...
1363909593759480000

The two t invocations yield different results. As stated in the Scala language specification, this is because:

“This indicates that the argument is not evaluated at the point of function application, but instead is evaluated at each use within the function. That is, the argument is evaluated usingcall-by-name.”

That's a simple call by name example in Scala.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值