-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmy_command.py
More file actions
45 lines (38 loc) · 1.02 KB
/
Copy pathmy_command.py
File metadata and controls
45 lines (38 loc) · 1.02 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
from abc import ABCMeta, abstractmethod
# abstract base class (abc)
class Order(metaclass=ABCMeta):
@abstractmethod
def execute(self):
pass
class StockTrade():
def buy(self):
print('buy stocks')
def sell(self):
print('sell stocks')
class Agent():
def __init__(self):
self.__orderQueue = [] # an empty list
def placeOrder(self, order):
self.__orderQueue.append(order)
order.execute()
# concrete classes
class BuyStockOrder(Order):
def __init__(self, stock):
self.stock = stock
def execute(self):
self.stock.buy()
class SellStockOrder(Order):
def __init__(self, stock):
self.stock = stock
def execute(self):
self.stock.sell()
# immediate code
if __name__ == '__main__':
# client
stock = StockTrade()
buyStock = BuyStockOrder(stock)
sellStock = SellStockOrder(stock)
#invoker
agent = Agent()
agent.placeOrder(buyStock)
agent.placeOrder(sellStock)