-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfactroy_pattern2.py
66 lines (48 loc) · 1.28 KB
/
factroy_pattern2.py
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
class Auto(object):
def __init__(self):
self._marke = None
def hupen(self):
print('Hup....Hup')
class Opel(Auto):
def __init__(self):
self._marke = 'Opel'
class Ferrari(Auto):
def __init__(self):
self._marke = 'Ferrari'
def hupen(self):
print('Brrrrrrrrrrrr!!')
class Vw(Auto):
def __init__(self):
self._marke = 'vw'
def hupen(self):
print('Pffffffffffff!')
class Nissan(Auto):
def __init__(self):
self._marke = 'nissan'
def hupen(self):
print('hust hust hust!')
class AutoFactory(object):
@staticmethod
def create_auto(self, marke):
if marke == 'opel':
return Opel()
elif marke == 'ferrari':
return Ferrari()
elif marke == 'vw':
return Vw()
elif marke == 'nissan':
return Nissan()
if __name__ == '__main__':
print('----> create opel <-----')
auto = AutoFactory().create_auto('opel')
print(auto._marke)
auto.hupen()
print('----> create ferrari <-----')
auto = AutoFactory().create_auto('ferrari')
print(auto._marke)
auto.hupen()
print('----> create vw <-----')
auto = AutoFactory().create_auto('vw')
print(auto._marke)
auto.hupen()
print('\nENDE\n')