1
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 5 years have passed since last update.

Kotlin文法メモ~コンストラクタ~

Last updated at Posted at 2019-03-18

初めに

kotlin でのコンストラクタに関するメモ

コンストラクタとは

クラスの中の変数であるメンバを初期化するためのもの。
インスタンスが作成されたとき最初に実行される。

コンストラクタの実装

コンストラクタは以下のようにして実装できます。
以下のコードのクラスでは、車のメーカーの種類としてtype、製造年としてmodelを用意してあります


//CarContsructorの隣に()がない
class CarContsructor{
    var type:String? = null
    var model:Int?=null
    constructor(type:String,model:Int){
        this.type = type
        this.model = model
    }
}

左側のthis.typethis.modelはクラスの中のメンバを指していて、右のtypemodelはコンストラクタの引数の値になっています。

また、以下のような書き方も可能です。この場合、val car = CarConstructor()のように使えます。

//CarContsructorの隣に()がある
class CarContsructor(){
    var type:String? = null
    var model:Int?=null
    constructor(type:String,model:Int):this(){
        this.type = type
        this.model = model
    }
}

先にコンストラクタのとこが呼ばれた後に、メンバの定義がされて初期化される流れになってますね。

constructorを書くのが面倒っていう人は以下のようにしてプライマリーコンストラクタを利用して短く書けます。。すっきりしてこっちのほうがいいですね。
上の2つのコードと比較してかなり行数が省略されています。

class CarOptions(type:String,model:Int){
    var type:String? = type
    var model:Int?= model
}
1
0
3

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
1
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?