-3

当我在编译器上运行以下有关方法和类的 Ruby 代码时,出现以下错误“第 46 行:未定义的局部变量或方法 `app1' for main:Object (NameError)”。提前致谢:D!!

class Apps
    def initialize(name)
        @name = name
    end

    def add_app
       "#{name} has been added to the App Center.Approval is pending!!"
    end

    def app_approved
       "#{name} has been approved by the App Center"
    end

    def app_posted
       "Congratulations!!!!#{name} has been posted to the App Store."
    end
end

class Fbapps
    def initialize(name)
        @name = name
        @apps = []
    end

    def add_new(a_app)
       @apps << a_app
       "#{@app} has been added to the #{@apps} store!!"
    end

    def weekly_release
       @apps.each do |app|
       puts @app
       end

       @apps.each do |app|
       app.add_app
       app.app_approved
       app.app_posted
       end
    end
end

apps = ["Bitstrip", "Candy Crush" , "Instapaper"]

apps = Fbapps.new("Apps")
apps.add_new(app1)
apps.add_new(app2)
apps.add_new(app3)
puts apps.weekly_release

app1 = Apps.new("Bitstrip")
app2 = Apps.new("Candy Crush")
app3 = Apps.new("Instapaper")
4

2 回答 2

1

在将它们添加到之前,您需要创建app1app2和:app3apps

apps = ["Bitstrip", "Candy Crush" , "Instapaper"]

app1 = Apps.new("Bitstrip")
app2 = Apps.new("Candy Crush")
app3 = Apps.new("Instapaper")

apps = Fbapps.new("Apps")
apps.add_new(app1)
apps.add_new(app2)
apps.add_new(app3)
puts apps.weekly_release

如前所述,您的类中还有其他错误,但鉴于如上所述更改执行顺序,它们应该相对容易修复。

更新:这是您更新的代码以修复大多数错误:

class Apps
  attr_accessor :name

  def initialize(name)
    @name = name
  end

  def add_app
    "#{name} has been added to the App Center.Approval is pending!!"
  end

  def app_approved
    "#{name} has been approved by the App Center"
  end

  def app_posted
    "Congratulations!!!!  #{name} has been posted to the App Store."
  end
end

class Fbapps
  attr_accessor :name

  def initialize(name)
    @name = name
    @apps = []
  end

  def add_new(a_app)
    @apps << a_app
    "#{a_app.name} has been added to the #{self.name} store!!"
  end

  def weekly_release
    @apps.each do |app|
      puts app.name
    end

    @apps.each do |app|
      puts app.add_app
      puts app.app_approved
      puts app.app_posted
    end
  end
end
于 2013-11-13T21:12:35.893 回答
1

apps.add_new(app1)定义app1. 那条线需要追随 app1 = Apps.new("Bitstrap")

于 2013-11-13T21:13:10.483 回答