RoadMovie

write down memos or something I found about tech things

Kotlin

Kotlinで知ってると便利なTips

もともとはRubyをメインで書いていたのですが、最近Kotlinを使うようになって便利だと思ったTipsをいくつか紹介します。 data class Ref: https://kotlinlang.org/docs/reference/data-classes.html 何もしないけどデータだけ持たせたい時に使えるクラスです…

Kotlinで新たに使えるようになったCoroutineで非同期処理

Coroutines Overview - Kotlin Programming Language 2019/01/16現在、まだexperimentalなのですが、使い勝手が良いので私が手伝っている会社でも取り入れ始めている、というより全面的にcoroutineで書き直しています。 基本的に launch の使い方と async, a…