以下のような中括弧なしでKotlinでクラスを作成できることに気付きました。中括弧なしのKotlinクラス
//Example classFile.kt
class Empty
class SecondEmpty
fun firstMethod() {
}
私の質問はなぜこのような機能が必要なのですか?どの状況でこれを使うことができますか?
上記の例では、firstMethod()
というメソッドを作成しましたが、他のオブジェクトから呼び出すにはどうすればよいですか?
関連:https://stackoverflow.com/questions/47588670/what-is-the-purpose-of-empty-class-in-kotlin – BakaWaii
[Kotlinの空のクラスの目的は何ですか] (https://stackoverflow.com/questions/47588670/what-is-the-purpose-of-empty-class-in-kotlin) –