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

[C#]virtualとoverrideの使い方をざっくり説明

Last updated at Posted at 2024-11-11

結論

ざっくり、virtualは仮想、overrideは上書きという意味。

  • 基本クラスのメソッドを再定義するためにoverrideが使われる
    • 基本クラスのメソッドにvirtualを指定、派生クラスのメソッドにoverrideを指定
    • virtualの付いていないメソッドはoverrideすることができない
  • virtualはstatic、abstractと一緒には使用できない

参考にした書籍

参考URL

0
0
1

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