기초
-
Kotlin 기초 문법 예제Kotlin 2021. 3. 17. 15:32
[키워드] as : 형 변환자 in : for , range , when 등 사용 is : 타입 캐스팅 ( instanceOf() ) this : 자바에서 접근이 힘든 부분까지 접근 가능, 상위 scope 까지 접근 가능 class A { // implicit label @A inner class B { // implicit label @B fun Int.foo() { // implicit label @foo val a = this@A // A's this val b = this@B // B's this val c = this // foo()'s receiver, an Int val c1 = this@foo // foo()'s receiver, an Int val funLit = lambda@ fun S..