Ruby 的菜鸟,正在做我自己版本的智能恒温器练习。我想设置一个已初始化的目标温度参数,然后在方法 update_temperature 中使用当前温度参数!出于某种原因,它引发了关于未定义局部变量的错误。
有任何想法吗?
class House
def initialize(target_temp, max_temp, min_temp)
@target_temp = target_temp
@max_temp = max_temp
@min_temp = min_temp
end
def update_temperature!(current_temp)
@current_temp = current_temp
if @min_temp < @current_temp && @current_temp < @target_temp
degrees_ac_off = @target_temp - @current_temp
puts "The current temperature is #{degrees_ac_off} below the target temperature of #{target_temp}. The air conditioner is off."
elsif @current_temp < @min_temp
degrees_below = @min_temp - @current_temp
puts "The current temperature is #{degrees_below} the minimum desired temperature of #{min_temp}. The heater is on."
elsif @target_temp < @current_temp && @current_temp < @max_temp
degrees_ac = @current_temp - @target_temp
puts "The current temperature is #{degrees_high} more than the target temperature of #{target_temp}. The air conditioner is on low."
else @max_temp < @current_temp
degrees_ac = @current_temp - @target_temp
puts "The current temperature is #{degrees_ac} more than the target temperature of #{target_temp}. The air conditioner is on high."
end
end
end
my_house = House.new(71,75,60)
my_house.update_temperature!(80)