Class

christian.dinh2481 total contributions
Published Apr 23, 2021Updated Mar 7, 2023
Contribute to Docs
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
- christian.dinh2481 total contributions
- MJLyonnais11 total contributions
- CaupolicanDiaz119 total contributions
- garanews209 total contributions
- Anonymous contributorAnonymous contributor3077 total contributions
- christian.dinh
- MJLyonnais
- CaupolicanDiaz
- garanews
- Anonymous contributor
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.