Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
873 views
in Technique[技术] by (71.8m points)

ruby on rails - Parent and child class construction

I was just checking to see if I was writing my code correctly, for this checking class, and sure enough the checking class was accessing Account correctly. I just had to initialize it correctly.

class Checking < Account

    def 
       super
    end

    def balance()
        @balance = principal * (1 + interest_rate / 365) ** 365
    end

end
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You missed an initialize. Change:

class Checking < Account
  def 
     super
  end

  def balance()
    @balance = principal * (1 + interest_rate / 365) ** 365
  end
end

to

class Checking < Account
  def initialize
     super
  end

  def balance
    @balance = principal * (1 + interest_rate / 365) ** 365
  end
end

And your next issue will be that Checking#new (initialize) doesn't take parameters, but you call super and Account#new expects one argument.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...