基本実装を呼び出すメソッドがあります。
class B
def m x, y
x + y
end
end
class C < B
def m x, y
super * 10
end
end
派生メソッド内のパラメーターを参照することはないため、パラメーター名の使用を避ける方法はありますC.m
か?
基本実装を呼び出すメソッドがあります。
class B
def m x, y
x + y
end
end
class C < B
def m x, y
super * 10
end
end
派生メソッド内のパラメーターを参照することはないため、パラメーター名の使用を避ける方法はありますC.m
か?