-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathex42.rb
More file actions
91 lines (64 loc) · 1.35 KB
/
ex42.rb
File metadata and controls
91 lines (64 loc) · 1.35 KB
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
## Animal is-a object look at the extra credit
class Animal
end
## Dog is-a object
class Dog < Animal
def initialize(name)
## Dog has-a name of some kind
@name = name
end
end
## Cat is-a object
class Cat < Animal
def initialize(name)
## Cat has-a name of some kind
@name = name
end
end
## Person is-a object
class Person
def initialize(name)
## Person has-a name of some kind
@name = name
## Person has-a pet of some kind
@pet = nil
end
attr_accessor :pet
end
## Employee is-a object
class Employee < Person
def initialize(name, salary)
## ?? hmm what is this strange magic?
# Use the name property from class Person
super(name)
## Employee has-a salary property
@salary = salary
end
end
## Fish is-a object
class Fish
end
## Salmon is-a Fish
class Salmon < Fish
end
## Halibut is-a Fish
class Halibut < Fish
end
## rover is-a Dog
rover = Dog.new("Rover")
## satan is-a Cat
satan = Cat.new("Satan")
## Mary is-a Person
mary = Person.new("Mary")
## Mary has-a satan pet
mary.pet = satan
## Frank is-a kind of Employee
frank = Employee.new("Frank", 120000)
## Frank has-a rover pet
frank.pet = rover
## Flipper is-a instance of Fish object
flipper = Fish.new()
## Crouse is-a instance of Salmon object
crouse = Salmon.new()
## Harry is-a instance of Halibut object
harry = Halibut.new()