2

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)
4

2 回答 2

1

您正在使用#{target_temp}which 调用方法,您可以将 @ 符号放在它之前,也可以为它们添加访问器方法。我更喜欢后者。

class House
  attr_accessor :target_temp, :min_temp, :max_temp
于 2013-05-26T09:38:55.207 回答
-1

您错过了@sign #{target_temp}#{min_temp}如下所示。

  • puts "The current temperature is #{degrees_ac_off} below the target temperature of #{target_temp}. The air conditioner is off."

  • puts "The current temperature is #{degrees_below} the minimum desired temperature of #{min_temp}. The heater is on."

  • puts "The current temperature is #{degrees_high} more than the target temperature of #{target_temp}. The air conditioner is on low."

  • puts "The current temperature is #{degrees_ac} more than the target temperature of #{target_temp}. The air conditioner is on high."

使用以下代码:

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_high = @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)
#=> The current temperature is 9 more than the target temperature of 71. The air conditioner is on high.
于 2013-05-26T09:35:31.827 回答