Why use a symbol in place of a variable?

G

Gaba Luschi

Hi,
Say you have a method in a class that's defined as this:
(working from Peter Cooper's Beginning Ruby book, p. 155 of the book)

class Dungeon
 
J

John Feminella

A symbol and a variable are two different things. A symbol is
essentially a special kind of literal, just like a number or a string
is. You cannot assign values to symbols, just like you can't assign
values to numbers or strings -- they are their own values. That is, it
makes no sense to say `42 = "banana"`, just as it makes no sense to
say `:banana = 42`.

In this case, the author is using the symbol :largecave to represent a
particular location. The reason why he might prefer a symbol literal
to a string literal is that symbols are immutable. "Immutable" means
that you can't do operations on symbols to change them (unlike, say,
strings). Immutability is a good property because it decreases that
number of surprises you can have, and because it makes reasoning about
your program easier.

~ jf
 
S

sanjeev mathur

[Note: parts of this message were removed to make it a legal post.]

This is quite good tutorial about symbols and strings here
http://www.robertsosinski.com/2009/01/11/the-difference-between-ruby-symbols-and-strings/

A symbol and a variable are two different things. A symbol is
essentially a special kind of literal, just like a number or a string
is. You cannot assign values to symbols, just like you can't assign
values to numbers or strings -- they are their own values. That is, it
makes no sense to say `42 = "banana"`, just as it makes no sense to
say `:banana = 42`.

In this case, the author is using the symbol :largecave to represent a
particular location. The reason why he might prefer a symbol literal
to a string literal is that symbols are immutable. "Immutable" means
that you can't do operations on symbols to change them (unlike, say,
strings). Immutability is a good property because it decreases that
number of surprises you can have, and because it makes reasoning about
your program easier.

~ jf
--
John Feminella
Principal Consultant, BitsBuilder
LI: http://www.linkedin.com/in/johnxf
SO: http://stackoverflow.com/users/75170/
 
C

Chris Kottom

[Note: parts of this message were removed to make it a legal post.]

Along with what John Feminella said about symbols' immutability is the
advantage they have over the string literals that they also often replace,
and that is the fact that each new instance of a string literal will refer
to a different Ruby object while each reference to the equivalent symbol
will refer to the same object instance with the added bonus that less memory
is used. See the example below.

ruby-1.9.2-p136 :001 > "hi".object_id
=> 71175750
ruby-1.9.2-p136 :002 > "hi".object_id
=> 71172980
ruby-1.9.2-p136 :003 > :hi.object_id
=> 185928
ruby-1.9.2-p136 :004 > :hi.object_id
=> 185928


 
M

Mike Stephens

Another way to look at it is a symbol is it is an emnumerated scalar.

You could have

cavesize = 345
my_dungeon.start(cavesize)

However if caves are only ever Small, Medium and Large, then you can
represent that finite set of options by passing :smallcave, :mediumcave
or :largecave.

A symbol can therefore more closely represent the logic of the problem.
 
J

John Feminella

Another way to look at it is a symbol is it is an emnumerated scalar.

I don't think that's an accurate characterization, imo, since symbols
have no relationship or knowledge of other symbols. They are not a
collection of anything, and thus by definition can't be an
enumeration. Using your example, nothing stops you from writing
my_dungeon.start:)bananas)

and that would be a perfectly valid parameter to supply. However, if
you wrote something like
my_dungeon.start(DungeonSizes[:bananas])

that would clue you into the problem. In this case, DungeonSizes would
be more like the enumeration, into which a symbol would be the index
for the element of the enumeration you wanted to select.

~ jf
--
John Feminella
Principal Consultant, BitsBuilder
LI: http://www.linkedin.com/in/johnxf
SO: http://stackoverflow.com/users/75170/
 

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,754
Messages
2,569,521
Members
44,995
Latest member
PinupduzSap

Latest Threads

Top