Scala Call by Name && Call by Value

Scala Call by Name && Call by Value
다음 scala 코드 입 니 다. 이 두 가지 차 이 를 보 세 요.
def something() = {
  println("calling something")
  1 // return value
}

def callByValue(x: Int) = {
  println("x1=" + x)
  println("x2=" + x)
}

def callByName(x: => Int) = {
  println("x1=" + x)
  println("x2=" + x)
}

callByValue(something())

println("====================")

callByName(something())

운행 결 과 를 보면,
E:\test-scala>scala function_called.scala
calling something
x1=1
x2=1
====================
calling something
x1=1
calling something
x2=1

Call by Value
이름 처럼 함수 가 호출 되 는 과정 에서 값 을 전달 합 니 다. 예 를 들 어 C 언어 에서 값 을 호출 하고 something 함수 가 Int 값 을 되 돌려 주 며 함수 호출 값 입 니 다.
Call by Name
우선 위 키 에서 어떻게 설명 하 는 지 봅 시다: In call - by - name evaluation, the arguments to a function are not evaluated ( function is called - rather, they are substituted (대체, 대체) directly into the function body (using capture - avoiding substitution (대체)) and then left to be evaluated whenever they appeared in the function. argument is not used in the function body, the argument is never evaluated;if it is used several times, it is re-evaluated each time it appears. 
이 글 은 callByName 의 효 과 를 잘 설명 합 니 다.위의 그 예 에 의 하면.
참고 자료
http://blog.csdn.net/bobozhengsir/article/details/13023023
http://stackoverflow.com/questions/13337338/call-by-name-vs-call-by-value-in-scala-clarification-needed
http://blog.sina.com.cn/s/blog_6d27562901019oxw.html
http://stackoverflow.com/questions/6297153/what-does-code-unit-mean-in-scala
================END================

좋은 웹페이지 즐겨찾기