ruby 在線工具
#!/usr/bin/ruby -w
# 定義類
class Box
attr_accessor :width, :height
# 構(gòu)造器方法
def initialize(w,h)
@width, @height = w, h
end
# 實例方法
def getArea
@width * @height
end
end
# 使用 new 創(chuàng)建對象
box1 = Box.new(10, 20)
# 使用 allocate 創(chuàng)建兩一個對象
box2 = Box.allocate
# 使用 box1 調(diào)用實例方法
a = box1.getArea()
puts "Area of the box is : #{a}"
# 使用 box2 調(diào)用實例方法
a = box2.getArea()
puts "Area of the box is : #{a}"