ポリモーフィズム
あるクラスを継承する際、スーパークラスにあるメソッドをサブクラスのメソッドが上書きして異なる動作をさせること。
継承に限った話ではないので、微妙な説明?
同じメソッドが存在する場合は、クラスの親子関係だけでなく、同じインターフェースを持つクラス同士でもありうる
Polymorphism is the facility that allows a language/program to make decisions during runtime on which method to invoke based on the types of the parameters sent to that method.
言語やプログラムが実行時に、そのメソッドに送られるパラメーターの型に基づいて、どのメソッドを呼び出すかを決める仕組み。
より一般的
具体例