Kotlin31 코틀린 New Gradle Sync is not supported due to containing Kotlin modules 오류처리 설치한 JVM 버전이 안맞아서 오류가 난다. File.Settigns에 들어가서 버전을 맞춰주면 해결된다. New Gradle Sync is not supported due to containing Kotlin modules 2020. 3. 22. 18. 코틀린 코루틴 안드로이드 전용이 아닌, 코틀린 intellij에서는 라이브러리 추가 메이븐으로 하면 된다고 한다. 참고 사이트 https://kotlinlang.org/docs/tutorials/coroutines/coroutines-basic-jvm.html Your first coroutine with Kotlin - Kotlin Programming Language This tutorial walks us through setting up a project using coroutines, and writing code that uses them. kotlinlang.org https://github.com/Kotlin/kotlinx.coroutines Kotlin/kotlinx.coroutines Library .. 2020. 3. 22. 17. 코틀린 인터페이스 클래스와 인터페이스가 다른 점 하나는 다중 상속이 가능하다는 점. C#으로 짠 데이터베이스 컬럼 정보를 읽어오는 클래스 모델 보통 다중 상속을 받아, 처리하게 된다. 나중에 다들 이렇게 구현하지 않을까? 2020. 3. 16. 16. 코틀린 상속 상속할 클래스 : Person 상속받을 클래스 : Student 상속할 예정일 클래스 앞에 open이라는 키워드를 붙여줘야지 상속이 된다. open 키워드를 제거하면 오류. 함수(Person, Print) 앞에 open 키워드를 붙여주면 자식 클래스에서 override 로 재정의 가능하다. 2020. 3. 16. 이전 1 2 3 4 5 6 7 8 다음