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 coroutine
- 공부
- IntelliJ
- 오블완
- Spring
- kotlin
- 티스토리챌린지
- MySQL
- minikube
- kotlin querydsl
- CKA 기출문제
- APM
- 정보처리기사 실기 기출문제
- 기록으로 실력을 쌓자
- CloudWatch
- Elasticsearch
- 코틀린 코루틴의 정석
- Kubernetes
- aws
- Pinpoint
- Java
- AWS EKS
- mysql 튜닝
- Linux
- kotlin spring
- 정보처리기사 실기
- AI
- CKA
- PETERICA
Archives
- Today
- Total
목록kotlin list to set (1)
피터의 개발이야기
[Kotlin] List 사용법 정리
ㅁ 들어가며ㅇ Kotlin에서 List는 순서가 있는 요소들의 컬렉션이다. ㅇ 이 글에서는 List의 기본적인 사용법과 함께 자주 사용되는 연산들을 살펴본다.ㅁ List 생성하기val immutableList = listOf(1, 2, 3, 4, 5)val mutableList = mutableListOf("a", "b", "c")ㅁ List 요소 접근하기val firstElement = immutableList[0]val lastElement = immutableList.last()val firstElement = immutableList[0] val lastElement = immutableList.last()ㅁ List 순회하기for (item in immutableList) { printl..
Programming/Kotlin
2024. 7. 12. 10:10