# Flutter にある@override とは

@overrideアノテーションは、親クラス(スーパークラス)のメソッドをサブクラスでオーバーライド(再定義)することを示すために使用されます。

`@override` は必須?

@override アノテーションを使用することが推奨されますが、必須ではありません
@override を使用することで、コードの可読性向上とコンパイル次のエラー検知に役立ちます。

# @override アノテーションの位置

@override アノテーションは通常、オーバーライドするメソッドの直前に置くことが基本






 



class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  
  State<MyHomePage> createState() => _MyHomePageState();
}

複数オーバーライドする場合


 





 
































class _MyHomePageState extends State<MyHomePage> {
  
  void initState() {
    super.initState();
    // 初期化処理
  }

  
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text('You have pushed the button this many times:'),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.headline4,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ),
    );
  }

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }
}
2024-05-29
  • flutter