Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Simple example of meta-class (See related posts)

Use metaclass to define the representation
of a class (not an instance).
>>> class Pretty(type):
...     def __str__(cls):
...         return '<Class ' + cls.__name__ +'>'
...     
>>> class Foo(object):
...     __metaclass__ = Pretty
...     
>>> str(Foo)
'<Class Foo>'
>>> 

Representation of an instance can be done using class.
Representation of a class can be done using meta-class.
The code is adapted from this blog post.

You need to create an account or log in to post comments to this site.


Click here to browse all 5147 code snippets

Related Posts