kotolinでのコンストラクタの書き方

タイトル:kotlin コンストラクタ

カテゴリ:etc...

投稿日22/06/08 09:02

更新日22/06/08 09:02

GOOD
none1
お気に入り
none
・明示的に書く。 ```kt class Book constructor(_title String, _price:Int) { val pricw: String val title: Int init { title = _title price = _price } } ``` ・省略可能① (constructor、init) ```kt class Book(_title: String, _price: Int) { val title = _title val price = _price } ``` ・省略可能②(プロパティをコンストラクタの引数で初期化) ```kt class Book(val title String, val price: Int) ```
©Bloodberry