일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 함수
- import
- Android
- 크롤러
- DART
- map
- 코틀린
- 클래스
- set
- textstyle
- python
- Collection
- 웹크롤러
- 다트
- Flutter
- crawler
- ML
- function
- pushnamed
- Class
- animation
- 플러터
- Yocto
- 콜렉션
- List
- 파이썬
- package
- variable
- text
- kotlin
- Today
- Total
목록Class (13)
조용한 담장
코틀린의 클래스의 확장(Extentsion) 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/extensions.html 을 보며 정리. kotlin 의 클래스는 상속이나 디자인 패턴인 Decorator 를 통한 기능 확장 외의 방법인 extention 을 제공한다. 예를들어 수정이 불가능한 third-party 라이브러리의 클래스에 함수를 추가할 수 있다. 마치 원래 클래스에 있는 메소드처럼 함수를 추가해 호출할 수 있게 해주는걸 extension functions 라 한다. property 도 추가할 수 있으며 이를 extension properties 라 한다. Extension functions receiver(확장할 대상) type 과 함수의 이름을 ..
코틀린의 Visibility Modifier 를 살펴보자. 원문 https://kotlinlang.org/docs/reference/visibility-modifiers.html 을 보며 정리. class, object, interface, constructor, function, property 와 그들의 setter 들은 visibility modifier 를 가질 수 있다. visibility modifier : private, protected, internal, public 기본은 public 이다. Packages function, property 와 class, object 와 interface 는 package 내에서 최상위에서 바로 선언할 수 있다. // file name: example..
코틀린의 인터페이스(interface) 에 대해 알아보자. 원문 https://kotlinlang.org/docs/reference/interfaces.html 을 보며 정리. interface 키워드를 사용하는 인터페이스는 추상화 메소드와 그 구현 코드를 가지고 있고 state 는 저장할 수 없다. interface MyInterface { fun bar() fun foo() { // optional body } } Implementing Interfaces 한개의 클래스나 오브젝트는 한개 이상의 인터페이스를 가질 수 있다. class Child : MyInterface { override fun bar() { // body } } Properties in Interfaces 인터페이스는 propert..
코틀린 클래스의 프로퍼티(property) 와 필드(field) 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/properties.html 을 보며 정리. Declaring Properties property 는 var 또는 var 로 선언된다. class Address { var name: String = "Holmes, Sherlock" var street: String = "Baker" var city: String = "London" var state: String? = null var zip: String = "123456" } fun copyAddress(address: Address): Address { val result = Address() ..