国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載

ruby 在線工具

ruby 在線工具

#!/usr/bin/ruby -w

# 定義類
class Box
   # 構造器方法
   def initialize(w,h)
      @width, @height = w, h
   end
   # 實例方法
   def getArea
      @width * @height
   end
end

# 定義子類
class BigBox < Box

   # 改變已有的 getArea 方法
   def getArea
      @area = @width * @height
      puts "Big box area is : #@area"
   end
end

# 創(chuàng)建對象
box = BigBox.new(10, 20)

# 使用重載的方法輸出面積
box.getArea()
運行結果