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================
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.