Skip to content

Instantly share code, notes, and snippets.

@mistyrinth
Created November 24, 2018 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mistyrinth/564dbb94b3c8927d99eaec0c154fb84f to your computer and use it in GitHub Desktop.
Save mistyrinth/564dbb94b3c8927d99eaec0c154fb84f to your computer and use it in GitHub Desktop.
# 親クラスとメソッドの定義
class Car
def accele
print("アクセルを踏みました\n")
end
def brake
print("ブレーキを踏みました\n")
end
end
# 子クラスへの継承
class Soarer < Car
# メソッドのオーバーライド
def accele
# 親クラスの同名メソッド(accele)呼び出し
super
print("加速しました\n")
end
end
soarer = Soarer.new
soarer.accele
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment