본문 바로가기
개발 메모

순열~조합 in java, edittext 2개를 한 줄에 쓸 때, return과 jump(kotlin)

by ESHC 2022. 3. 10.

코딩테스트 대비 순열~조합 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/

 

java-순열-중복순열-조합-중복조합 | daehun

Java 기본 이론 정리 하기

daehun93.github.io

 


edittext 2개를 한 줄에 쓸 때 고생했던 기억이 있다.

https://superwony.tistory.com/98

 

[AOS] TextView가 2개 붙어 있을때 앞에 ellipsize 옵션 적용하기

작성 일지 - 초안 작성 : 20.3.4 - 내용 추가 : 21.11.25 ( 텍스트뷰가 둘다 가변 적일때 ) 요즘 ConstraintLayout을 기본적으로 사용하다보니 크고 작은 이슈들이 자주 발생합니다. '아 이게 안되나?' 싶어서

superwony.tistory.com

참고하자.

 



코틀린을 쓸 때 반복문을 빠져나오는 방법.

일반적으로 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

 

Returns and jumps | Kotlin

 

kotlinlang.org

 

'개발 메모' 카테고리의 다른 글

ViewPager, setSystemUiVisibility, Deque, ListIterator  (0) 2022.03.08

댓글