일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 크롤러
- set
- 파이썬
- Collection
- 콜렉션
- 함수
- 플러터
- ML
- crawler
- text
- variable
- animation
- 다트
- map
- package
- texttheme
- List
- 클래스
- import
- Flutter
- textstyle
- kotlin
- python
- DART
- 코틀린
- pushnamed
- Class
- Android
- function
- 웹크롤러
- Today
- Total
목록코틀린 (38)
조용한 담장
코틀린 클래스의 Object Expressions and Declarations 를 살펴보자 원문 https://kotlinlang.org/docs/reference/object-declarations.html 을 보며 정리. 새로운 클래스를 만들지 않고 특정 클래스에 약간의 수정만 한 오브젝트를 만드는 방법에 대해 살펴본다. Object expressions 특정 type 을 상속한 익명(이름없는) 클래스(anonymous class) 의 오브젝트를 생성하는 방법 window.addMouseListener(object : MouseAdapter() { override fun mouseClicked(e: MouseEvent) { /*...*/ } override fun mouseEntered(e: Mou..
코틀린 클래스의 제네릭(generic) 에 대해 알아보자. 원문 https://kotlinlang.org/docs/reference/generics.html 을 보며 정리. 코틀린의 제네릭 클래스: class Box(t: T) { var value = t } T 는 type parameter 이다. 클래스의 인스턴스를 생성할 때 type argument 를 제공해야 한다. val box: Box = Box(1) 생성자의 인자 값을 통해서나 다른 어떤 방식이든 parameter 의 타입이 추론이 가능할 때는 type argument 의 생략이 가능하다. val box = Box(1) // 1 has type Int, so the compiler figures out that we are talking ab..
코틀린 클래스의 type alias 에 대해 알아보자 원문 https://kotlinlang.org/docs/reference/type-aliases.html 을 보며 정리. typealias 을 사용하여 존재하는 타입의 새로운 이름 또는 별칭을 만들어 준다. 타입의 이름이 너무 길때 짧은 이름을 만드는데 유용하다. typealias NodeSet = Set typealias FileTable = MutableMap 함수 타입도 가능하다. typealias MyHandler = (Int, String, Any) -> Unit typealias Predicate = (T) -> Boolean 중첩 클래스에도 쓸 수 있다. class A { inner class Inner } class B { inner c..
코틀린의 중첩 클래스(nested class) 와 내부 클래스(inner class) 에 대해 알아보자. 원문 https://kotlinlang.org/docs/reference/nested-classes.html 을 보며 정리. Nested classes class Outer { private val bar: Int = 1 class Nested { fun foo() = 2 } } val demo = Outer.Nested().foo() // == 2 Inner classes 중첩 클래스는 inner 로 표시하고 외부클래스(outer class) 에서 멤버의 접근이 가능하다. 내부 클래스는 외부 클래스의 오브젝트 레퍼런스를 가지고 있다. class Outer { private val bar: Int =..