class Box def initialize(w,h) @width,@height=w,h end def printWidth puts @width end def printHeight @height*12 end
puts @width,"asfd" 这访问不了,只能在实例方法中访问,这里代表类实例class
end
box =Box.new(1,12) x=box.printHeight box.printWidth puts "#{x}"
class Box def initialize(w,h) @width,@height=w,h end def printWidth puts @width end def printHeight @height*12 end
puts @width,"asfd" 这访问不了,只能在实例方法中访问,这里代表类实例class
end
box =Box.new(1,12) x=box.printHeight box.printWidth puts "#{x}"