What does this mean? ||=

J

Justin Ko

I'm looking at this method and don't understand what ||= means:

def current_account
@account ||= Account.find(session[:account_id])
end

I have the ruby for rails book and can't find anything on it.
 
K

Keith Fahlgren

It does the following in this order:

if @account HAS A VALUE (is not nil) then DO NOTHING
otherwise, compute Account.find(...) and set its return value into
@account.

Just to be explicit, it's both 'nil' or 'false' that will be reset to
the new value:

irb(main):001:0> f = false
=> false
irb(main):003:0> f ||= 1
=> 1
irb(main):004:0> f
=> 1 # was set
irb(main):002:0> n = nil
=> nil
irb(main):005:0> n ||= 1
=> 1
irb(main):006:0> n
=> 1 # was set
irb(main):007:0> t = true
=> true
irb(main):008:0> t ||= 1
=> true
irb(main):009:0> t
=> true # wasn't set



HTH,
Keith
 
R

Robert Worley

If @account is nil it'll look in the database to find an account using
the account id from the session and return it; otherwise it'll just
return the current value of @account.
 
C

Chris Gernon

Justin said:
I'm looking at this method and don't understand what ||= means:

Much like 'x += 1' is a shortcut for 'x = x + 1', 'x ||= 1' is a
shortcut for 'x = x || 1'.

The significance of this is that the || method doesn't simply return a
boolean value; it checks the first argument, returns it if it evaluates
to 'true' (i.e. is something other than false or nil), and otherwise
returns the second argument. So it's commonly used as a shortcut for an
if/then statement, checking if the first argument is nil (or false). So
the following are all equivalent:

if @account
@account
else
Account.find(session[:account_id])
end

is the same as:

@account = @account || Account.find(session[:account_id])

is the same as:

@account ||= Account.find(session[:account_id])

Hope this helps!
 
D

dblack

HI --

Justin said:
I'm looking at this method and don't understand what ||= means:

Much like 'x += 1' is a shortcut for 'x = x + 1', 'x ||= 1' is a
shortcut for 'x = x || 1'.

The significance of this is that the || method doesn't simply return a
boolean value; it checks the first argument, returns it if it evaluates
to 'true' (i.e. is something other than false or nil), and otherwise
returns the second argument. So it's commonly used as a shortcut for an
if/then statement, checking if the first argument is nil (or false). So
the following are all equivalent:

if @account
@account
else
Account.find(session[:account_id])
end

is the same as:

@account = @account || Account.find(session[:account_id])

is the same as:

@account ||= Account.find(session[:account_id])

Your first example doesn't set @account; it just tests it. You'd need
to do the assignment explicitly:

@account = if @account
@account
else
Account.find(session[:account_id]
end


David

--
Q. What is THE Ruby book for Rails developers?
A. RUBY FOR RAILS by David A. Black (http://www.manning.com/black)
(See what readers are saying! http://www.rubypal.com/r4rrevs.pdf)
Q. Where can I get Ruby/Rails on-site training, consulting, coaching?
A. Ruby Power and Light, LLC (http://www.rubypal.com)
 
B

Bertram Scharpf

Hi Justin,

Am Samstag, 13. Jan 2007, 04:52:29 +0900 schrieb Justin Ko:
I'm looking at this method and don't understand what ||= means:

def current_account
@account ||= Account.find(session[:account_id])
end

A scheme I practice a lot:

def meth parm = nil
parm ||= "default"
...
end

...

a = some_calculation
obj.meth a # a may be nil and still hits the default value

Bertram
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,999
Messages
2,570,246
Members
46,843
Latest member
WizcraftEntertainmentAgen

Latest Threads

Top