所以.....?什么时候?
我在下面写了一个小例子,但它似乎不起作用,因为“土豆南瓜”没有显示。它正在返回:“你正在吃一种空白类型的食物”
class Food
def initialize(food=“none”)
@food = food
end
def self.food=(food=“none”)
end
def self.type?
puts “you are eating a #{food} type of food” # defines the type of food you are eating.
end
end
Food.new("potato squash")
Food.type?
谢谢先进的家伙。