-
Notifications
You must be signed in to change notification settings - Fork 13
/
11_factory_method_sample.rb
64 lines (54 loc) · 1.17 KB
/
11_factory_method_sample.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
# -*- coding: utf-8 -*-
# アヒル (Product)
class Duck
def initialize(name)
@name = name
end
def eat
puts "アヒル #{@name} は食事中です"
end
end
# カエル (Product)
class Frog
def initialize(name)
@name = name
end
def eat
puts "カエル #{@name} は食事中です"
end
end
# 池 (Creator)
class Pond
def initialize(number_animals)
@animals = []
number_animals.times do |i|
animal = new_animal("動物 #{i}")
@animals << animal
end
end
def simulate_one_day
@animals.each { |animal| animal.eat}
end
end
# DuckPond: 池のアヒルを生成する (ConcreteCreator)
class DuckPond < Pond
def new_animal(name)
Duck.new(name)
end
end
# FrogPond: 池のカエルを生成する (ConcreteCreator)
class FrogPond < Pond
def new_animal(name)
Frog.new(name)
end
end
# ===========================================
pond = DuckPond.new(3)
pond.simulate_one_day
#アヒル 動物 0 は食事中です
#アヒル 動物 1 は食事中です
#アヒル 動物 2 は食事中です
pond = FrogPond.new(2)
pond.simulate_one_day
#カエル 動物 0 は食事中です
#カエル 動物 1 は食事中です