Flowdock
class

Symbol

spacer
Ruby latest stable (v1_9_3_392) - 0 notes - Superclass: Object
  • 1_8_6_287 (0)
  • 1_8_7_72 (0)
  • 1_8_7_330 (0)
  • 1_9_1_378 (-38)
  • 1_9_2_180 (0)
  • 1_9_3_125 (15)
  • 1_9_3_392 (0)
  • What's this?

Symbol objects represent names and some strings inside the Ruby interpreter. They are generated using the :name and :“string” literals syntax, and by the various to_sym methods. The same Symbol object will be created for a given name or string for the duration of a program’s execution, regardless of the context or meaning of that name. Thus if Fred is a constant in one context, a method in another, and a class in a third, the Symbol :Fred will be the same object in all three contexts.

module One
  class Fred
  end
  $f1 = :Fred
end
module Two
  Fred = 1
  $f2 = :Fred
end
def Fred()
end
$f3 = :Fred
$f1.object_id   #=> 2514190
$f2.object_id   #=> 2514190
$f3.object_id   #=> 2514190

Symbol serialization/deserialization

Show files where this class is defined (3 files)
Register or log in to add new notes.
gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.