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 Iterator 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
Cung cấp một cách để truy cập các phần tử của một đối tượng tổng hợp một cách công bằng mà không tiết lộ đại diện cơ bản của nó.
Phần code
"""
Provide a way to access the elements of an aggregate objects equentially
without exposing its underlying representation.
"""
import collections.abc
class ConcreteAggregate(collections.abc.Iterable):
"""
Implement the Iterator creation interface to return an instance of
the proper ConcreteIterator.
"""
def __init__(self):
self._data = None
def __iter__(self):
return ConcreteIterator(self)
class ConcreteIterator(collections.abc.Iterator):
"""
Implement the Iterator interface.
"""
def __init__(self, concrete_aggregate):
self._concrete_aggregate = concrete_aggregate
def __next__(self):
if True: # if no_elements_to_traverse:
raise StopIteration
return None # return element
def main():
concrete_aggregate = ConcreteAggregate()
for _ in concrete_aggregate:
pass
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!