Hello all .
I am a newbie to Ruby. I have been reading everything I can get my
hands on about Ruby. I understand what a symbol is and how it saves
memory space. I just can not seem to find any good reason to use one. I
am sure I am missing something. Would some one please show me a good
working example for using a symbol, please not the “Foo B.” example
again.
I usually use a symbol instead of a string when I use it to represent
a ‘concept’ meaningful to the program, rather than just some text that
is meaningful only to the user.
For example, what I used to model as ‘flags’ or ‘options’ in other
languages become symbols in ruby.
i.e: “ciao”.translate_to :english
“ciao” is a piece of text meaningful to the user. :english is a
symbol meaningful to the program.
When the concept that I represent as a symbol becomes more complex I
usually evolve it to an object.
I am a newbie to Ruby. I have been reading everything I can get
my hands on about Ruby. I understand what a symbol is and how it
saves memory space. I just can not seem to find any good reason to
use one. I am sure I am missing something. Would some one please
show me a good working example for using a symbol, please not the
“Foo B.” example again.
IMHO, when your goal is to model distinct values but the actual bit
patterns
are irrelevant then symbols are often the best approach. When you
goal is
to model a particular sequence of bytes or characters then strings
are often
the best solution, especially when the sequence might change over time.
For example, if you want to record ‘gender’ you could model that in lots
of different ways:
In fact, the actual bit pattern is not important. What is important
is that you have two unique objects and that they can be clearly mapped
to some external representation of male and female. Symbols are
perfect for
this because they implement value semantics (equality is based on
identity)
and they also internalize the mapping to external strings. If you
choose
to use 1 and 0 instead you would still have to have some sort of
conversion
table or code routine that mapped 1 to ‘female’ and 0 to ‘male’ (or vice
versa). Use symbols and you get the conversion for ‘free’.
code snippets that illustrate my coding style using symbols:
if object.respond_to? :a_method
{ :key => “value” }
subject.do_something( sideeffect=:notify)
you could use strings instead, but this kind of coding style enhances
code
readability, because if you see a symbol you automatically associate it
with
methods, variables, and constant expressions and the symbol syntax
differentiates these from normal (data-)strings.
i think i don’t need to tell you guys why good coding styles are
important
in software engineering
– henon
Nobody who has any sense wants to record the “gender” of
a human being. A person is a member of a certain sex, not
of a “gender”. Hence, “the weaker sex”. Only words have
gender. That is elementary. Unfortunately, ignorant witlings
have decided that it is trendy and politically correct to
substitute ‘gender’ for ‘sex’.
It must have started with people filling in the ‘sex’ entry in forms
with YES
Nobody who has any sense wants to record the “gender” of
a human being. A person is a member of a certain sex, not
of a “gender”. Hence, “the weaker sex”. Only words have
gender. That is elementary. Unfortunately, ignorant witlings
have decided that it is trendy and politically correct to
substitute ‘gender’ for ‘sex’.
Nobody who has any sense wants to record the “gender” of
a human being. A person is a member of a certain sex, not
of a “gender”. Hence, “the weaker sex”. Only words have
gender. That is elementary. Unfortunately, ignorant witlings
have decided that it is trendy and politically correct to
substitute ‘gender’ for ‘sex’.
Thanks for pointing all that out. Here is a corrected version
of my table:
gender. That is elementary. Unfortunately, ignorant witlings
have decided that it is trendy and politically correct to
substitute ‘gender’ for ‘sex’.
One important plus to using symbols… it’s obvious how to then extend
the system when you realize you need to add :intersex, as biological
sex is not always an either/or proposition.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.