Skip to main content

Scope and Access modifiers in Ruby


Access modifiers (or access specifiers) are keywords in object-oriented languages that set the accessibility of classes, methods, and other members.

Access modifiers set the visibility of methods and member fields. Ruby has three access modifiers: public, protected and private. In Ruby, all data members are private. Access modifiers can be used only on methods. Ruby methods are public, unless we say otherwise. The scope of the methods is until another scope comes i.e. when we write private all the methods below it are private until any other scope (i.e. protected or public).

NOTE: Ruby does not apply any access control over instance and class variables.

Public Methods: Public methods can be called by anyone. Methods are public by default except for initialize, which is always private.

Private Methods: Private methods cannot be accessed, or even viewed from outside the class. Only the class methods can access private members.

Protected Methods: A protected method can be invoked only by objects of the defining class and its subclasses. Access is kept within the family.

  • The public methods can be accessed from inside the definition of the class as well as from the outside of the class.
  • The difference between the protected and the private methods is subtle. Neither can be accessed outside the definition of the class.
  • They can be accessed only within the class itself and by inherited or parent classes.

Example:

# define a class
class Box
# constructor method
def initialize(w,h)
 @width, @height = w, h
end

# instance method by default it is public
def getArea
 getWidth * getHeight
end

# define private accessor methods
private

def getWidth
 @width
end

def getHeight
 @height
end

protected

def printArea
 @area = getWidth * getHeight
 puts "Big box area is : #@area"
end
end

# create an object
box = Box.new(10, 20)

# call instance methods
a = box.getArea
puts "Area of the box is : #{a}"

#try to call private methods
w = box.getWidth

puts "Width of the box is : #{w}"

# try to call protected or methods
box.printArea

OUTPUT:

Area of the box is : 200

access_modifiers.rb:39:in `<main>': private method `getWidth' called for #<Box:0x93ee654 @width=10, @height=20> (NoMethodError)


References:





Comments

Popular posts from this blog

Rails: Grouping the records by group_by method

Many times we come across such situations where we need to group records, like when we want to display grouped messages, email, alerts .etc based on date or time. Here is the simple code which provides a significant use of group_by method. Controller Part class MessagesController < ApplicationController   def index     @message = Message .all     #Retrives all messages and divides into two groups todays messages and other messages     @grouped_messages = @message .group_by{ |t| t.created_at.to_date == DateTime .now.to_date }     if @grouped_messages [ false ].present?       #Create month wise groups of messages             @month_wise_sorted_alerts  = @grouped_messages [ false ].group_by{ |t| t.created_at.month}     end       end end @message .group_by{ |t| t.created_at.to_date == DateTime .now.to_date } The above line return us the messages in Ordered Hash with two keys true and false on which the messages which are of today's date will be valu

OOP Polymorphism

Definition : " Poly " stands for " many " and " morph " stands for " forms ". Generally, polymorphism means one name different uses . Technically, it means being able to send the same message to different objects and get different result. Polymorphism through Inheritance We can achieve polymorphism through inheritance . For example class GenericParser def parse raise NotImplementedError , 'You must implement the parse method' end end class JsonParser < GenericParser def parse puts 'An instance of the JsonParser class received the parse message' end end class XmlParser < GenericParser def parse puts 'An instance of the XmlParser class received the parse message' end end Here the GenericParser is the base class. Class JsonParser and XmlParser are inherited from the GenericParser. Now suppose we run the below code. puts 'Using the XmlParser' parser

List of Common mistakes in Ruby

Always use spaces around operators, after commas, colons and semicolons, around { and before }.  White space  might be (mostly) irrelevant to the Ruby interpreter, but its proper use is the key to writing easily readable code. Also it makes the design more readable and code much cleaner. product = 1 * 2 array = [ 1 , 2 , 3 , 4 , 5 ] array.map { |a| a + 2 } There should be no spaces after (, [ or before ], ) these brackets. [ 'ankur' , 'vyas' ] sum(a, b) Also don't use spaces in while providing the range. Use 5 .. 9 over 5 .. 9 Use 'a' .. 'z' over 'a' .. 'z' When using switch case statements use the following indentation. case when input = '+' puts 'The operation is addition' when '-' puts 'The operation is subtraction' when '*' puts 'The operation is multiplication' else puts 'The operat