Implementing the factory design pattern using metaclasses
I found a lot of links on metaclasses, and most of them mention that they are useful for implementin开发者_JS百科g factory methods. Can you show me an example of using metaclasses to implement the design pattern?
I'd love to hear people's comments on this, but I think this is an example of what you want to do
class FactoryMetaclassObject(type):
def __init__(cls, name, bases, attrs):
"""__init__ will happen when the metaclass is constructed:
the class object itself (not the instance of the class)"""
pass
def __call__(*args, **kw):
"""
__call__ will happen when an instance of the class (NOT metaclass)
is instantiated. For example, We can add instance methods here and they will
be added to the instance of our class and NOT as a class method
(aka: a method applied to our instance of object).
Or, if this metaclass is used as a factory, we can return a whole different
classes' instance
"""
return "hello world!"
class FactorWorker(object):
__metaclass__ = FactoryMetaclassObject
f = FactorWorker()
print f.__class__
The result you will see is: type 'str'
You can find some helpful examples at wikibooks/python, here and here
There's no need. You can override a class's __new__()
method in order to return a completely different object type.
精彩评论