DEV Community

Cover image for Mastering Variables and Constants in Ruby: The Beauty of Flexibility and Consistency
Carlos Ferrer
Carlos Ferrer

Posted on • Updated on

Mastering Variables and Constants in Ruby: The Beauty of Flexibility and Consistency

Image description

Ruby, a dynamic, object-oriented programming language, is known for its convenience and simplicity. One of the features that make Ruby so special is the way it treats variables and constants. In this article, we will delve into the depths of this language to understand how Ruby handles these essential elements and how you can elegantly use them in your own projects.

Variables in Ruby: Flexibility that inspires creativity

Variables in Ruby are like magic boxes that can contain any type of data — numbers (integers and decimals), strings, objects, and more. The simple act of assigning a value to a variable is known as "assignment". Let's look at an example:

name = "Carlos Ferrer"
age = 35
Enter fullscreen mode Exit fullscreen mode

Here, name and age are variables that contain a string and a number respectively. Ruby does not require you to declare the type of variable - it is dynamic and will automatically deduce the type based on the assigned value.

Another notable aspect is that variables in Ruby begin with lowercase letters or the _ symbol. They are case sensitive, which means that name and Name are different variables.

Constants in Ruby: Stability amid change

Constants in Ruby are values that should not be changed during program execution. The decision followed by Ruby developers is to write constants with all letters in capital letters, making them easily distinguishable from variables. Let's look at an example:

PI = 3.14159265359
DAYS_IN_WEEK = 7
Enter fullscreen mode Exit fullscreen mode

These constants are immutable, and if you try to reassign a value to them, you will receive a warning. However, it is important to note that Ruby does not prevent modifying the contents of objects assigned to a constant. For example:

MY_ARRAY = [1, 2, 3]
MY_ARRAY.push(4)  # This is allowed
Enter fullscreen mode Exit fullscreen mode

Scope of Variables and Constants

Ruby also offers different scopes for variables and constants:

  • Local scope: Variables defined within a method or block are considered local and can only be accessed within that context. Let's see:
def local_scope_example
   my_local_variable = "This is a local variable"
   puts my_local_variable
end

local_scope_example
# Output: This is a local variable

# Attempting to access the variable outside the scope of the method will cause an error.
puts my_local_variable
# Output: NameError: undefined local variable or method 'my_local_variable' for main:Object
Enter fullscreen mode Exit fullscreen mode
  • Instance scope: Instance variables start with @ and are accessible in every instance of a class. For example:
class ExampleClass
   def initialize
     @minha_variavel_instancia = "This is an instance variable"
   end

   def show_variable_instance
     puts @minha_variable_instance
   end
end

object = ExampleClass.new
object.show_variable_instance
# Output: This is an instance variable

# Trying to access the instance variable directly outside the class instance will cause an error.
puts object.@minha_variable_instance
# Output: SyntaxError: unexpected '@', expecting end-of-input
Enter fullscreen mode Exit fullscreen mode
  • Class scope: Class variables start with @@ and are shared by all instances of a class. Let's see:
class ExampleClass
   @@my_variable_class = "This is a class variable"

   def self.show_variable_class
     puts @@my_variable_class
   end
end

object1 = ExampleClass.new
object2 = ExampleClass.new

ExampleClass.show_variable_class
# Output: This is a class variable

# Class variables are shared by all instances of the class.
object1.show_variable_class
# Output: This is a class variable
object2.show_variable_class
# Output: This is a class variable
Enter fullscreen mode Exit fullscreen mode
  • Global scope: Global variables start with $ and can be accessed anywhere in the code, making them a powerful feature, but one that should be used with caution. Let's see:
$my_global_variable = "This is a global variable"

def show_global_variable
   puts $my_global_variable
end

show_global_variable
# Output: This is a global variable

# Global variables can be accessed anywhere in the code.
puts $my_global_variable
# Output: This is a global variable
Enter fullscreen mode Exit fullscreen mode

The elegance of flexibility and consistency

Ruby, with its simplicity and flexibility, makes programming a creative and elegant experience. Variables and constants play a crucial role in this journey, allowing developers to express their ideas in an intuitive and consistent way.
By understanding the difference between variables and constants in Ruby, as well as the scopes in which they operate, you will be prepared to write elegant and effective Ruby code. Enjoy the beauty of this language and let your creativity flow in the art of programming.
I hope this article has been an enlightening introduction to the world of variables and constants in Ruby. As you deepen your knowledge, you will discover even more reasons to fall in love with this versatile and expressive language. Happy coding!

Top comments (0)