반응형
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
- Python
- Excel
- gas
- PANDAS
- string
- Tkinter
- Google Spreadsheet
- google apps script
- GIT
- PostgreSQL
- list
- Mac
- Github
- SQL
- numpy
- django
- Java
- c#
- Google Excel
- PySpark
- 파이썬
- Redshift
- matplotlib
- hive
- math
- dataframe
- array
- Apache
- Kotlin
Archives
- Today
- Total
목록READ-ONLY (1)
달나라 노트
Kotlin - List
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world Kotlin에서도 python처럼 List라는 것이 존재합니다. 여러 요소들을 하나로 묶어서 나타내주는 것이며 순서가 존재합니다. 다만 Kotlin에서는 두 가지 종류의 list가 존재합니다. MutableList = 변경(요소 추가 제거 등)이 가능한 list List = 변경이 불가하고 읽기만 가능한 list List를 생성할 때는 내장 method를 사용해야하는데 어떤 Method를 사용하는지에 따라 Mutable list인지 read-only List인지가 결정됩니다. mutableListOf() -> mutable list 생성 listOf() -> r..
Kotlin
2021. 3. 15. 03:47