そう.....?いつですか?
以下に小さな例を書きましたが、「ポテトスカッシュ」が表示されていないため、機能していないようです。それは戻ってきます:「あなたは空のタイプの食べ物を食べています」
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?
上級者向けの Thx。