CSC/ECE 517 Fall 2012/ch1b 1w56 ms: Difference between revisions
Line 99: | Line 99: | ||
---- | ---- | ||
The save and update methods used in Rails are actually instance methods. | The save and update methods used in Rails are actually instance methods. | ||
There are two types of methods in Ruby: Safe methods and destructive methods. They are called as safe and destructive depending on whether they modify the input parameters passed to them. The destructive methods end with the “!” symbol, so that they can warn the programmer when he is writing the code. “<<” is another example of a destructive method. | |||
==Class Variables and Class Methods== | ==Class Variables and Class Methods== |
Revision as of 00:17, 4 October 2012
Introduction
-Content-
Object
Content
Class
Content
Inheritance
Content
Instance Variables and Accessor Methods
Instance Variables
An instance variable begins with the symbol “@” in Ruby. It is different from a local variable because its scope is confined to the object to which self refers. Instance variables are invisible outside of the object. The only way we can access them or observer them is by writing methods to get or set the value of them. Instance variables have the value “nil” until they are initialized.
Instance variables do not need to be declared. In fact we can also access instance variables without declaring or initializing it, this will not raise an exception. However a warning will be issued if we run it using the –w switch.
Every instance variable is dynamically appended to an object in the first assignment.
Example:
@balance -> instance variable
Accessor Methods
As stated previously, we cannot access instance variables from anywhere outside an object. Hence we need to define methods to access them. They are generally called as getter and setter methods.
The getter method is used to return the value of the instance variable. It would be defined as:
Example:
def balance
@balance
end
The setter method is used to set the value of the instance variable. Setter methods always end with the “=” sign. It would be defined as:
Example:
def balance= (bal)
@balance = bal
end
Instead of writing getter and setter methods for each class, we can use the attr_accessor function. The attr_accessor is a method call which uses metaprogramming to generate the getter and setter methods dynamically at run time.
Example:
attr_accessor :balance
This is equivalent to
def balance
@balance
end
def balance= (bal)
@balance = bal
end
We can also generate getter and setter methods for more than one instance variable.
attr_accessor :balance, :new_balance
We can also use attr_reader if we only want to generate the getter function. Similarly we can use the method call attr_writer for generating just the setter function.
Instance Methods
Instance methods work with instances of the class. So in order to use instance methods we have to create an instance.
Example:
def deposit
@balance += amount
end
You can include the definition of an instance method within the class like this:
Example:
Class SavingsAccount < Account
def deposit
@balance += amount
end
end
Or you can also define it later. Since Ruby is a dynamic programming language we are allowed to reopen a class and add methods to it. For instance to add the deposit method after closing the class:
Class SavingsAccount < Account
end
SAcc = SavingsAccount.new
def SAcc.deposit
@balance += amount
end
The save and update methods used in Rails are actually instance methods.
There are two types of methods in Ruby: Safe methods and destructive methods. They are called as safe and destructive depending on whether they modify the input parameters passed to them. The destructive methods end with the “!” symbol, so that they can warn the programmer when he is writing the code. “<<” is another example of a destructive method.
Class Variables and Class Methods
Class Variables
A class variable begins with the symbol “@@” in Ruby. Once we define a class variable it is set for the class and all of its subclasses.
Example:
@@bank_name = “MyBank.com”
We need to add a getter method to access the class variable from outside the class. This would look like:
def self.bank_name
@@bank_name
end
puts SavingsAccount.bank_name => “MyBank.com”
Class Methods
Class methods are equivalent to static methods in Java. Class methods only exist in the class that defined them. So we cannot call a class method with an instance variable, because the class method does not exist in the instance variable.
There are multiple ways of defining class methods.
- def SavingsAccount.bank_name
- def self.bank_name
- class << self
def bank_name
In Method 1 we use the class name followed by a dot followed by the class method name. In Method 2 we use the keyword self. In Ruby self gives you access to the current object, when defined within a class it refers to the current class. Method 2 is frequently used to define a class method. In the third method we are actually building an anonymous class for the current object (referred by self) using the << notation. We are doing exactly what we did in Method 2, it is uncommon to see the use of Method 3.
References
http://www.rubyfleebie.com/understanding-class-methods-in-ruby/
http://stackoverflow.com/questions/2084490/ruby-class-variables
http://railstips.org/blog/archives/2009/05/11/class-and-instance-methods-in-ruby/
http://railsguru.org/2010/04/quick-ruby-tutorials-3-class-and-instance-methods/
http://www.rubyist.net/~slagell/ruby/instancevars.html
http://www.rubyist.net/~slagell/ruby/accessors.html