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

App下載

ruby 在線工具

ruby 在線工具

#!/usr/bin/ruby -w

# 定義類
class Box
   # constructor method
   def initialize(w,h)
      @width, @height = w, h
   end
   # 實(shí)例方法
   def getArea
      @width * @height
   end
end

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

# 調(diào)用實(shí)例方法
a = box.getArea()
puts "Area of the box is : #{a}"
運(yùn)行結(jié)果