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
- Android
- DB 기능
- suspend programming
- navigation component
- 실버 4
- gradlew
- 최댓값 최솟값
- LazyColumn
- 프로그래머스
- 성빈랜드
- Myungpyo Shim
- 개발하는 정대리
- 브론즈 1
- 피보나치 수 2
- LazyRow
- 실버2
- kotlin
- capitalize
- keystore
- DB
- 백준
- github action
- 데이터베이스 첫걸음
- 2레벨
- Activirty
- Bitrise
- 브론즈1
- compose
- .github
- 데이터베이스
Archives
- Today
- Total
목록성빈랜드 (1)
plzy의 개발 블로그
[Coroutine] 기초를 알아보자. (1)
이 블로그 포스팅은 https://myungpyo.medium.com/reading-coroutine-official-guide-thoroughly-part-1-98f6e792bd5b 를 참고하여 만들었습니다. #1 중단 함수에 대해 알아보자. package com.smp.coroutinesample.basic import kotlinx.coroutines.GlobalScope import kotlinx.coroutines.delay import kotlinx.coroutines.launch fun main(args: Array) { GlobalScope.launch { delay(1000L) println("World!") } println("Hello,") Thread.sleep(2000L) } 위의..
Android
2022. 7. 7. 20:45