티스토리 뷰
바로 직전에 글 하나 적었는데요. lazy var를 이용하는 방법에 대해서 적었습니다. ^^
이번에는 고차함수에서 이 lazy를 이용할 경우의 좋은점을 이야기 하려고 합니다.
1 2 3 4 5 6 7 8 | func increment(input: Int) -> Int { return input + 1 } let array = Array(0..<1000) let incArray = array.map(increment) print("# Result #") print(incArray[1], incArray[7]) | cs |
뭐 대략 이런 부분이 코딩이 되어 있다고 한다면, 다음과 같이 고차함수인 map부분이 모두 동작하게 됩니다.
이렇게 array에 lazy를 사용가능합니다.
1 2 3 4 5 6 7 8 | func increment(input: Int) -> Int { return input + 1 } let array = Array(0..<1000) let incArray = array.lazy.map(increment) print("-----") print(incArray[1], incArray[7]) | cs |
이렇게 연산이 변경이 됩니다.
이렇게 변경이 됩니다.
이렇게 lazy를 잘 사용하시면 성능의 효과를 톡톡히 볼수 있습니다.
'Mobile > iOS' 카테고리의 다른 글
UIScrollView에 contentOffset이 적용될때 (0) | 2018.05.16 |
---|---|
ScrollViewDelegate 호출되는 시점 (0) | 2018.05.15 |
swift lazy (0) | 2018.05.07 |
playground 팁 몇가지 (0) | 2018.05.04 |
TestFlight is Currently Unavailable (0) | 2018.05.03 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- github
- android
- Python
- Spring
- SWIFT
- centos8
- golang
- Windows
- CentOS
- MySQL
- Kotlin
- Java
- Xcode
- git
- windows10
- war
- intellij
- nodejs
- Gradle
- go
- Codable
- php
- docker
- enum
- ios
- cocoapods
- Linux
- rxswift
- tomcat
- ubuntu
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함