App下載

ruby 在線工具

#!/usr/bin/ruby -w

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

# 定義子類
class BigBox < Box

   # 添加一個新的實例方法
   def printArea
      @area = @width * @height
      puts "Big box area is : #@area"
   end
end

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

# 輸出面積
box.printArea()
運行結(jié)果