Class
A class is a piece of code within a program that functions as a template or blueprint for creating multiple instances of a particular object.
The template provides initial values and behavior for each of these instances. Each instance is an object itself.
Example
Suppose we want to create a Cat
class with three instance variables:
@cat_name
@cat_color
@cat_age
class Catdef initialize(name, color, age)@cat_name = name@cat_color = color@cat_age = ageendend
Now we can create a bunch of objects based off of the Cat
class:
mochi = Cat.new("Mochi", "Gray", 2)bean = Cat.new("Bean", "Black/Gray", 6)femi = Cat.new("Femme en Noir", "Black/White", 9)
All contributors
- garanews222 total contributions
- Anonymous contributorAnonymous contributor3071 total contributions
- christian.dinh2476 total contributions
- MJLyonnais11 total contributions
- CaupolicanDiaz142 total contributions
- garanews
- Anonymous contributor
- christian.dinh
- MJLyonnais
- CaupolicanDiaz
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.