类的特殊成员方法

__doc__ 表示类的描述信息

1 class file:
2     """你是一个大笨猪"""
3 
4     def f(self):
5         pass
6 print (file.__doc__)
7 
8 #打印显示 >>> 你是一个大笨猪

__module__ 和__class__

 1 __module__ 表示当前操作的对象在哪个模块
 2 __class__ 表示当前操作的对象的类是什么
 3 
 4 #a.py文件内容
 5 class C(object):
 6      """无意义测试内容"""
 7     def __init__(self,name):
 8         self.name = name
 9 
10     def tell(self):
11         print("Your name is %s" %self.name)
12 ###########################################
13 
14 from myself.a import C
15 
16 obj = C('gdr')
17 print(obj.__module__)
18 print(obj.__class__)
1 输出结果:
2 >>> 你是一个大笨猪
3 >>> myself.a
4 >>> <class 'myself.a.C'>

__call__

 1 __call__对象后面加括号,触发执行
 2 构造方法的执行是由创建对象触发的,即:对象 = 类名();而对于__call__方法执行是由对象后加括号触发的,即:对象(),类()()
 3 
 4 class F(object):
 5     """这是__call__测试类"""
 6     def __init__(self,name):
 7         self.name = name
 8 
 9     def __call__(self, *args, **kwargs):
10         print("你是个天才" ,args,kwargs)
11 
12 a = F("xxx")
13 a(1,name=2)
14 F("xxx")()
1 #输出结果
2 >>> 你是个天才 (1,) {'name': 2}
3 >>> 你是个天才 () {}

__dict__

1 __dict__查看类或对象中的所有成员(代码接上面)
2 print(F.__dict__)   #打印类里的所有属性,不包括实例属性
3 print(a.__dict__)   #打印所有实例属性,不包括类属性
1 输出结果:
2 >>> {'__doc__': '这是__call__测试类', '__init__': <function F.__init__ at 0x0050F1E0>, '__call__': <function F.__call__ at 0x0050F0C0>, '__weakref__': <attribute '__weakref__' of 'F' objects>, '__module__': '__main__', '__dict__': <attribute '__dict__' of 'F' objects>}
3 
4 >>>{'name': 'xxx'}

__str__

 1 __str__如果一个类中定义了__str__方法,那么在打印对象时,默认输出该方法的返回值
 2 
 3 class E(object):
 4     def __init__(self,name):
 5         self.name = name
 6 
 7     def __str__(self):
 8         return '%s' % self.name
 9 
10 b = E("HAHAHA")
11 print(b)
12 
13 输出结果:
14 >>> HAHAHA
posted @ 2017-11-22 18:10  橙子味的萝卜  阅读(150)  评论(0编辑  收藏  举报