반응형
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 |
Tags
- Google Excel
- Redshift
- math
- array
- Java
- 파이썬
- PostgreSQL
- django
- string
- gas
- Mac
- Github
- matplotlib
- Python
- numpy
- Tkinter
- SQL
- Apache
- google apps script
- PySpark
- c#
- Kotlin
- list
- GIT
- PANDAS
- Excel
- dataframe
- Google Spreadsheet
- hive
Archives
- Today
- Total
목록super (1)
달나라 노트
Kotlin - super() (parent class의 method 그대로 쓰기)
상속이란 개념은 이미 글을 올린 적이 있습니다. class의 상속 링크 -> cosmosproject.tistory.com/211 open class Test1() { // 1 val name: String = "Bella" val team: String = "Team 1" fun comment(): String { return "Test 1 class function" } } class Test2(): Test1() { // 2 } fun main() { val testing = Test2() // 3 println(testing.name) // 4 println(testing.team) // 4 println(testing.comment()) // 4 } -- Result Bella Team 1 Te..
Kotlin
2021. 3. 19. 00:57