Skip to Content
자바에서 코틀린으로
book

자바에서 코틀린으로

by 덩컨 맥그레거, 냇 프라이스, 오현석
November 2022
Beginner to intermediate
544 pages
12h 39m
Korean
Hanbit Media, Inc.
Content preview from 자바에서 코틀린으로
69
4
옵셔널에서 널이 될 수 있는 타입으로
for (leg in legs) {
if (isLongerThan(leg, duration))
if (result == null ||
isLongerThan(leg, result.plannedDuration))
result = leg
}
return Optional.ofNullable(result)
}
findLongestLegOver
에서 반환문을 제외한 부분에 대해 ‘
Extract
Function
(함수 추출 )’을
적용한다. 이렇게 만든 함수에 똑같은 이름을 줄 수는 없으므로
longestLegOver
라는 이름을
사용한다. 이 함수가 새로운 인터페이스이기 때문에 이 함수를 공개 함수로 지정한다.
예제
4.6
[nullability.5:src/main/java/travelator/Legs.kt]
@JvmStatic
fun findLongestLegOver(
legs: List<Leg>,
duration: Duration
): Optional<Leg> {
var result: Leg? = longestLegOver(legs, duration)
return Optional.ofNullable(result)
}
fun longestLegOver(legs: List<Leg>, duration: ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

고성능 파이썬(2판)

고성능 파이썬(2판)

오현석, 미샤 고렐릭, 이안 오스발트
러닝 타입스크립트

러닝 타입스크립트

조시 골드버그
실리콘밸리 리더십

실리콘밸리 리더십

김정혜, 마이클 롭

Publisher Resources

ISBN: 9791169210447