스칼라 클로저
-
[스칼라] 함수와 클로저스칼라 2022. 1. 31. 21:51
(x: Int) => x + 1 // 함수 리터럴의 예 // 인터프리터의 출력 res1: Int => Int = Programming in scala 4th edition을 읽고 정리한 내용입니다. 1. 메서드 메서드는 객체 안의 멤버인 함수이다. 스칼라에서 함수는 메서드를 포함한 좀 더 넓은 개념이다. class ClassExample { val postFix = "ClassExample`s method" //메서드 def printFunction(s: String): Unit = { println(getModifiedString(s)) } //메서드 private def getModifiedString(str: String): String = { s"$postFix: $str" } } 2. First..