Qua các series tự học về Design Pattern, Hôm nay cafedevn chia sẻ cho ace ví dụ và code cụ thể về cách sử dụng Strategy design pattern với ngôn ngữ lập trình Python. Nhằm giúp ace hiểu rõ cách sử Pattern này với Python một cách nhanh nhất và áp dụng nó vào thực tế.
Nội dung chính
Mô tả code
ĐỊnh nghĩa nhóm thuật toán, đóng gói từng thuật toán và làm cho chúng có thể hoán đổi cho nhau. Strategy cho phép thuật toán thay đổi độc lập với khách hàng sử dụng nó.
Phần code
"""
Define a family of algorithms, encapsulate each one, and make them
interchangeable. Strategy lets the algorithm vary independently from
clients that use it.
"""
import abc
class Context:
"""
Define the interface of interest to clients.
Maintain a reference to a Strategy object.
"""
def __init__(self, strategy):
self._strategy = strategy
def context_interface(self):
self._strategy.algorithm_interface()
class Strategy(metaclass=abc.ABCMeta):
"""
Declare an interface common to all supported algorithms. Context
uses this interface to call the algorithm defined by a
ConcreteStrategy.
"""
@abc.abstractmethod
def algorithm_interface(self):
pass
class ConcreteStrategyA(Strategy):
"""
Implement the algorithm using the Strategy interface.
"""
def algorithm_interface(self):
pass
class ConcreteStrategyB(Strategy):
"""
Implement the algorithm using the Strategy interface.
"""
def algorithm_interface(self):
pass
def main():
concrete_strategy_a = ConcreteStrategyA()
context = Context(concrete_strategy_a)
context.context_interface()
if __name__ == "__main__":
main()
Cài ứng dụng cafedev để dễ dàng cập nhật tin và học lập trình mọi lúc mọi nơi tại đây.
Tài liệu từ cafedev:
- Full series tự học Design Pattern từ cơ bản tới nâng cao tại đây nha.
- Các nguồn kiến thức MIỄN PHÍ VÔ GIÁ từ cafedev tại đây
Nếu bạn thấy hay và hữu ích, bạn có thể tham gia các kênh sau của cafedev để nhận được nhiều hơn nữa:
Chào thân ái và quyết thắng!