overloading
Computer Programming/Function overloading - Wikibooks, open books for an open world
define two or more functions with the same name and in the same scope.
Each function has a unique signature
関数のシグネチャーは、
名前???
引数の数
引数のタイプ
引数の順番
引数の名前
返り値のタイプ
で決まる。ここの、シグネチャーのどこかを変えて。同一関数名で2つ以上の実装ができる。
overrideは書き換える。
python monkey patch
みたいな、moneky patchは、override?
ruby - When monkey patching a method, can you call the overridden method from the new implementation? - Stack Overflow
よさそうな記事のようだが、読めてない。
#programming