8
2

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をプライベートで昔若干触ってましたが、
恥ずかしながら TODO() 関数の存在を知りませんでしたので、軽く書かせて頂きます。

コード

fun main(args:Array<String>) {
    println("Hello")
    TODO("実装途中ですよ")
    println("World")
}

上記のコードを実行すると、下記が表示されます。

Hello
Exception in thread "main" kotlin.NotImplementedError: An operation is not implemented: TEST

TODOとは

下記のように、未実装を表す NotImplementedErrorthrow するだけの関数のようです。
コンパイルは通すけど、未実装を表す時に使えそうです。

public inline fun TODO(reason: String): Nothing = throw NotImplementedError("An operation is not implemented: $reason")

最後に

業務で使っている方には当たり前のことかもしれませんが、初めて知ったので記事にさせて頂きました。

8
2
2

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
8
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?