1
1

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 1 year has passed since last update.

Dartのsuperとは?

Posted at

公式にも解説あるけどわかりずらい?

とりあえずコード書いてどんなことしてくれるのか検証してみたら、定義した親クラスのプロパティとメソッドを参照してくれるようだ。。。

つまり、変数と関数を呼び出すことができるということです。

// superクラスとは、継承元のクラスのこと。今回だとHogeクラスがsuperクラスになる。
class Hoge {
  String name = 'スーパークラス';
  void sayName() {
    print('継承するクラス');
  }

  void greet() {
    print('Hello');
  }
}

class Fuga extends Hoge {
  String name = 'Fuga';
  void greet() {
    // superを使うと、継承元のクラスのメソッドを呼び出せる
    super.greet();
    print(super.name);
  }
}

void main() {
  fuga.greet();
  fuga.sayName();
}

実行結果

Connecting to VM Service at ws://127.0.0.1:57814/HJLHuQnwFl0=/ws
Hello
スーパークラス
継承するクラス

Exited.

スクリーンショット 2023-10-17 21.56.54.png

最後に

superってなんだろうかと毎回調べていることが多かったのですが、やっとわかりました。これであってるのか疑問ですが😅

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?