-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathis-a_has-a_practice.rb
93 lines (68 loc) · 1.69 KB
/
is-a_has-a_practice.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
## Animal is-a object look at the extra credit
class Animal
end
## is-a relationship (Dog is-a type of Animal)
class Dog < Animal
def initialize(name)
## has-a relationship (instance of Dog has-a name)
@name = name
end
end
## is-a (Cat is-a type of animal)
class Cat < Animal
def initialize(name)
## has-a (Cat has-a name)
@name = name
end
end
## Person is-a object
class Person
def initialize(name)
## has-a (Person has-a name)
@name = name
## Person has-a pet of some kind
@pet = nil
end
attr_accessor :pet
end
## is-a (Employee is-a Person)
class Employee < Person
def initialize(name, salary)
## ?? hmm what is this strange magic?
## Employee inherits name from Person (Person is the super for Employee)
## has-a (Employee has-a name)
super(name)
## has-a (Employee has-a salary)
@salary = salary
end
end
## is-a (Fish is an object)
class Fish
end
## is-a (Salmon is-a type of fish)
class Salmon < Fish
end
## is-a (Halibut is-a fish)
class Halibut < Fish
end
## These are instantiating objects
## rover is-a Dog
rover = Dog.new("Rover")
## is-a (Satan is-a cat)
satan = Cat.new("Satan")
## is-a (Mary is-a person)
mary = Person.new("Mary")
## has-a (Mary has-a pet (named Satan))
mary.pet = satan
## is-a, has-a (Frank is an Employee that has-a salary of 120000)
frank = Employee.new("Frank", 120000)
## has-a (Frank has-a pet named Rover)
frank.pet = rover
## is-a (flipper is-a fish)
flipper = Fish.new()
## is-a (crouse is-a salmon)
crouse = Salmon.new()
## is-a (harry is-a halibut)
harry = Halibut.new()
## What is the point of @pet = nil?
## That gives a default to a Person's pet that is nil or "not set to anything."