Searching for: Initializer in Ruby
Instantiation
Language: Ruby

Used to create an object instance from a class (instantiate).

Inheritance
Language: Ruby

Inheritance is used to inherit another class' members, including fields and methods. A sub class extends a super class' members.

Constructor
Language: Ruby

A constructor is a special method that builds the object when a new object is created.

Modules
Language: Ruby

A module contains methods and fields for use when declaring a class.


  Next Page >