![]() |
|
|
|
Thread Tools | Display Modes |
|
|
|
|
#1 | ||||||
|
Hobbyist Programmer
Join Date: Jul 2004
Location: Location
Posts: 138
Rep Power: 5
![]() |
Ruby Classes tutorial
I created a tutorial to help me while learning Ruby. I've decided to post it for all to see
Please let me know of any syntax errors if you see them, so I may fix them.Classes Library example: Ok, so I want to start a library. In the library, I need books. We need to make a basic class, books. This is where all the books will go. We'll start off by creating a basic class for all the books. Quote:
Now lets enter a book into the database: Quote:
Now we want to try and get all the book information. So we will do this: Quote:
Quote:
Inheritance and Messages Inheritance allows you to create a class that is a specialization of another class. (Think of it as a subclass). For example, our library has the book conecept class Books. Now we will make a specific class for a genre of book. Quote:
Note: < Tells ruby that ProgrammingBooks is a subclass of Books. Quote:
**Note * You can get info using things such as Book.name etc. what ever comes after the . is a variable that you've set. |
||||||
|
|
|
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|