what's the difference betwen builder.py and abstruct_factory.py
SeekPoint opened this issue · 2 comments
SeekPoint commented
what's the difference betwen builder.py and abstruct_factory.py
faif commented
They are two different ways of creating objects. A builder typically creates a complex object in multiple steps, and until the final build
/create
function is executed the object is incomplete (in the example builder.py
, that's the building
object)