Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Kotlin
- activity
- architecture
- 백준
- Coroutines
- android
- TEST
- Python
- ProGuard
- Gradle
- 프로그래머스
- AWS
- Rxjava
- boj
- 쿠링
- MiTweet
- 암호학
- Coroutine
- Compose
- Hilt
- 코드포스
- androidStudio
- Codeforces
- MyVoca
- 코루틴
- livedata
- pandas
- textfield
- GitHub
- relay
Archives
- Today
- Total
목록추상클래스 (1)
이동식 저장소
[Kotlin] abstract class
Abstract class(이하 추상 클래스)는 인스턴스를 만들 수 없는 클래스이다. 추상 클래스는 보통 추상 메소드를 포함한다. 추상 메소드란 기본적으로 구현되지 않은 메소드이며 따라서 자식 클래스에서 구현되어야 한다. 추상 메소드는 항상 `open`이므로 별도로 `open` 키워드를 적을 필요는 없다. abstract class Animated { abstract fun animate() open fun stopAnimate() { // default implementation(기본 구현)을 가질 수 있음 } fun animateAgain() { // default implementation(기본 구현)을 가질 수 있음 } } 위의 예시에서 `animate()`는 추상 메소드이다. 따라서 `Anima..
Primary/Kotlin
2022. 5. 18. 16:02