0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Kotlin】when の ( ) 内に変数を定義して { } 内で使う

Last updated at Posted at 2021-06-23
fun Request.getBody() =
        when (val response = executeRequest()) {
            is Success -> response.body
            is HttpError -> throw HttpException(response.status)
        }

Conditions and loops | Kotlin より)

こんな風に when( ) 内(subject)に変数を定義して、それを { } 内(body)で参照することができます。
変数は val のみで、( ) 内全体の値を代入するものである必要があります。

Kotlin 1.3 から追加された機能とのこと。1

/以上

  1. 先日 IntelliJ に教えてもらうまでこの機能のことを知りませんでした…:flushed:

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?