本文整理汇总了Python中product.Product.add_part_A方法的典型用法代码示例。如果您正苦于以下问题:Python Product.add_part_A方法的具体用法?Python Product.add_part_A怎么用?Python Product.add_part_A使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类product.Product
的用法示例。
在下文中一共展示了Product.add_part_A方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ConcreteBuilder
# 需要导入模块: from product import Product [as 别名]
# 或者: from product.Product import add_part_A [as 别名]
class ConcreteBuilder(AbstractBuilder):
"""
Concrete implementation for AbstractBuilder. Please notice that this class
also offers a method for returning the whole, newly-created product
"""
_product = None
def __init__(self):
self._product = Product()
def build_part_A(self):
print("Building part A of complex object")
self._product.add_part_A("I am a complex object")
def build_part_B(self):
print("Building part B of complex object")
self._product.add_part_B("I am a complex object")
def get_product(self):
print("Created: new Product instance")
return self._product