Created
March 5, 2019 12:48
-
-
Save developer-sdk/d944ddd205b4d1c3f84801ecdc49c794 to your computer and use it in GitHub Desktop.
서술형 프로그래밍
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| object FuncThinking2 extends App { | |
| val employees = List("james", "s", "kevin", "paul") | |
| val result1 = employees.filter(_.length > 1).map(_.capitalize).reduce(_ + "," + _) | |
| println(result1) | |
| // 동일한 결과, 최종 문자열 조인의 차이 | |
| val result2 = employees.filter(_.length > 1).map(_.capitalize).mkString(",") | |
| println(result2) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment