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
- gradlew
- 실버 4
- suspend programming
- Bitrise
- 백준
- .github
- DB
- 실버2
- 최댓값 최솟값
- navigation component
- 브론즈 1
- Myungpyo Shim
- 성빈랜드
- 2레벨
- capitalize
- 피보나치 수 2
- Android
- DB 기능
- kotlin
- Activirty
- 브론즈1
- LazyColumn
- compose
- LazyRow
- github action
- 개발하는 정대리
- keystore
- 프로그래머스
- 데이터베이스
- 데이터베이스 첫걸음
Archives
- Today
- Total
목록성빈랜드 (1)
plzy의 개발 블로그

이 블로그 포스팅은 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