![]()
|
|
You graduate from a Ruby beginner to a Ruby advanced beginner when you grok Symbols. |
|
A symbol is a lightweight string alternative. It’s an immutable object that’s often used as an identifier. |
|
Symbols are similar to strings, but they are more efficient in terms of memory and performance because they are stored in a single memory location and are not duplicated. |
|
They also don’t have any of the many modification/manipulation methods that strings have, because they’re only used as identifiers and not as data. |
|
Creating Symbols |
|
There are many ways to create symbols. |
|
Using a colon ( |
|
Using the |
|
You can create an array of symbols with |
|
Why to use Symbols instead of Strings? |
|
In a Ruby program, the same string used in different variables are stored separately: |
|
But if you save the value as a symbol, Ruby will recognize that the value is same and use only one object no matter how many times you use the same value throughout the program: |
|
Symbols are also lightweight because they don’t have any of the string manipulation methods: |
|
This means using symbols as identifiers in your code will make your program performant and memory efficient. |
|
Converting between Strings and Symbols |
|
A string can be converted to a symbol with |
|
A symbol can be converted to a string with |
|
What “Identifiers”? |
|
In a hash, use symbols instead of strings to identify keys: |
|
A shorter, better way of writing the same hash: |
|
Use symbols for method names instead of strings: |
|
Use symbols for variables that are names for things: |
|
Next topic: Arrays .