Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Ruby Objects and Classes Build a Bank Account Class Part 3: Keeping Our Balance

4Ctech Admin
4Ctech Admin
5,062 Points

Question about balance method

Is it better to create the balance method or to simply update the balance as we add each transaction?

1 Answer

J Scott Erickson
J Scott Erickson
11,883 Points

I would have the actions ( deposit / withdraw ) update the balance themselves. Although you could have a method like so.

def balance( amount, action )
  case action
  when 'deposit'
    @balance = @balance + amount
  when 'withdraw'
    @balance = @balance - amount
  end
end

This is a pretty rudimentary implementation. There would be all sorts of things you might want to do here like validate that amount is a fixnum with two decimals, make sure that 'action' is either withdraw or deposit.