목록Kotlin (2)
코딩하기 좋은날
출처: https://kt.academy/article/cc-suspension How does suspension work in Kotlin coroutines? A deep explanation of how suspension works in Kotlin Coroutines. kt.academy Suspending function은 Kotlin Coroutine의 hallmark(특징)이다. suspension 기능은 다른 모든 Kotlin Coroutine 개념이 구축되는 가장 기본적인 기능이다. 그렇기 때문에 이 장의 목표는 작동 방식에 대한 확실한 이해를 구축하는 것이다. Coroutine을 Suspending 하는 것은 도중에 멈춘다는 의미이다. 이것은 비디오 게임을 멈추는 것과 유사하다. 체..
Java의 new, Clone, Copy constructor 그리고 kotlin의 copy 연산자들을 한번 비교해보자. 참조: https://dzone.com/articles/java-cloning-copy-constructor-vs-cloning Java Cloning: Copy Constructors vs. Cloning - DZone Java Object.clone() has fallen out of favor with devs, so let's see why. Here we consider cloning and compare it to serialization and copy constructors. dzone.com new operator in Java Java에서 새로운 object를 만들 ..