1 class file: 2 """你是一個大笨豬"""
3
4 def f(self): 5 pass
6 print (file.__doc__) 7
8 #打印顯示 >>> 你是一個大笨豬
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'>
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 >>> 你是個天才 () {}
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'}
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