코딩테스트 대비 순열~조합 in java 자료
https://daehun93.github.io/%EC%88%9C%EC%97%B4-%EC%A1%B0%ED%95%A9-%EC%99%84%EB%B2%BD%EC%A0%95%EB%A6%AC/
edittext 2개를 한 줄에 쓸 때 고생했던 기억이 있다.
https://superwony.tistory.com/98
참고하자.
코틀린을 쓸 때 반복문을 빠져나오는 방법.
일반적으로 return, break, continue를 사용하면 되지만
이중 for문이나 함수안에서의 for문 같은 경우에는 label을 사용하여 빠져나오는 구간을 정할 수 있다.
loop@ for (i in 1..100) {
for (j in 1..100) {
if (...) break@loop
}
}
fun foo() {
listOf(1, 2, 3, 4, 5).forEach lit@{
if (it == 3) return@lit // local return to the caller of the lambda - the forEach loop
print(it)
}
print(" done with explicit label")
}
출처 : https://kotlinlang.org/docs/returns.html
'개발 메모' 카테고리의 다른 글
ViewPager, setSystemUiVisibility, Deque, ListIterator (0) | 2022.03.08 |
---|
댓글