最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

基于Python __dict__與dir()的區(qū)別詳解

 更新時間:2017年10月30日 08:51:41   投稿:jingxian  
下面小編就為大家?guī)硪黄赑ython __dict__與dir()的區(qū)別詳解。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

Python下一切皆對象,每個對象都有多個屬性(attribute),Python對屬性有一套統(tǒng)一的管理方案。

__dict__與dir()的區(qū)別:

dir()是一個函數(shù),返回的是list;

__dict__是一個字典,鍵為屬性名,值為屬性值;

dir()用來尋找一個對象的所有屬性,包括__dict__中的屬性,__dict__是dir()的子集;

并不是所有對象都擁有__dict__屬性。許多內(nèi)建類型就沒有__dict__屬性,如list,此時就需要用dir()來列出對象的所有屬性。

__dict__屬性

__dict__是用來存儲對象屬性的一個字典,其鍵為屬性名,值為屬性的值。

#!/usr/bin/python
# -*- coding: utf-8 -*-
class A(object):
  class_var = 1
  def __init__(self):
    self.name = 'xy'
    self.age = 2

  @property
  def num(self):
    return self.age + 10

  def fun(self):pass
  def static_f():pass
  def class_f(cls):pass

if __name__ == '__main__':#主程序
  a = A()
  print a.__dict__  #{'age': 2, 'name': 'xy'}  實例中的__dict__屬性
  print A.__dict__  
  '''
  類A的__dict__屬性
  {
  '__dict__': <attribute '__dict__' of 'A' objects>, #這里如果想深究的話查看參考鏈接5
  '__module__': '__main__',        #所處模塊
  'num': <property object>,        #特性對象 
  'class_f': <function class_f>,     #類方法
  'static_f': <function static_f>,    #靜態(tài)方法
  'class_var': 1, 'fun': <function fun >, #類變量
  '__weakref__': <attribute '__weakref__' of 'A' objects>, 
  '__doc__': None,            #class說明字符串
  '__init__': <function __init__ at 0x0000000003451AC8>}
  '''

  a.level1 = 3
  a.fun = lambda :x
  print a.__dict__ #{'level1': 3, 'age': 2, 'name': 'xy','fun': <function <lambda> at 0x>}
  print A.__dict__ #與上述結(jié)果相同

  A.level2 = 4
  print a.__dict__ #{'level1': 3, 'age': 2, 'name': 'xy'}
  print A.__dict__ #增加了level2屬性

  print object.__dict__
  '''
  {'__setattr__': <slot wrapper '__setattr__' of 'object' objects>, 
  '__reduce_ex__': <method '__reduce_ex__' of 'object' objects>, 
  '__new__': <built-in method __new__ of type object at>, 
  等.....
  '''

從上述代碼可知,

實例的__dict__僅存儲與該實例相關(guān)的實例屬性,

正是因為實例的__dict__屬性,每個實例的實例屬性才會互不影響。

類的__dict__存儲所有實例共享的變量和函數(shù)(類屬性,方法等),類的__dict__并不包含其父類的屬性。

dir()函數(shù)

dir()是Python提供的一個API函數(shù),dir()函數(shù)會自動尋找一個對象的所有屬性(包括從父類中繼承的屬性)。

一個實例的__dict__屬性僅僅是那個實例的實例屬性的集合,并不包含該實例的所有有效屬性。所以如果想獲取一個對象所有有效屬性,應(yīng)使用dir()。

print dir(A)
'''
['__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'age', 'class_f', 'class_var', 'fun', 'level1', 'level2', 'name', 'num', 'static_f']
'''
a_dict = a.__dict__.keys()
A_dict = A.__dict__.keys()
object_dict = object.__dict__.keys()
print a_dict 
print A_dict 
print object_dict 
'''
['fun', 'level1', 'age', 'name']

['__module__', 'level2', 'num', 'static_f', '__dict__', '__weakref__', '__init__', 'class_f', 'class_var', 'fun', '__doc__']

['__setattr__', '__reduce_ex__', '__new__', '__reduce__', '__str__', '__format__', '__getattribute__', '__class__', '__delattr__', '__subclasshook__', '__repr__', '__hash__', '__sizeof__', '__doc__', '__init__']
'''

#因為每個類都有一個__doc__屬性,所以需要去重,去重后然后比較
print set(dir(a)) == set(a_dict + A_dict + object_dict) #True

結(jié)論

dir()函數(shù)會自動尋找一個對象的所有屬性,包括__dict__中的屬性。

__dict__是dir()的子集,dir()包含__dict__中的屬性。

以上這篇基于Python __dict__與dir()的區(qū)別詳解就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • Python代碼一鍵轉(zhuǎn)Jar包及Java調(diào)用Python新姿勢

    Python代碼一鍵轉(zhuǎn)Jar包及Java調(diào)用Python新姿勢

    這篇文章主要介紹了Python一鍵轉(zhuǎn)Jar包,Java調(diào)用Python新姿勢,本文通過截圖實例給大家介紹的非常詳細,對大家的學(xué)習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-03-03
  • python實現(xiàn)mean-shift聚類算法

    python實現(xiàn)mean-shift聚類算法

    這篇文章主要為大家詳細介紹了python實現(xiàn)mean-shift聚類算法,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-06-06
  • python實現(xiàn)網(wǎng)站的模擬登錄

    python實現(xiàn)網(wǎng)站的模擬登錄

    這篇文章主要介紹了python實現(xiàn)網(wǎng)站的模擬登錄的相關(guān)資料,通過自己構(gòu)造post數(shù)據(jù)來用Python實現(xiàn)登錄過程,需要的朋友可以參考下
    2016-01-01
  • pytorch三層全連接層實現(xiàn)手寫字母識別方式

    pytorch三層全連接層實現(xiàn)手寫字母識別方式

    今天小編就為大家分享一篇pytorch三層全連接層實現(xiàn)手寫字母識別方式,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-01-01
  • 最新評論

    松原市| 朔州市| 博白县| 西藏| 三门峡市| 长寿区| 汉阴县| 左云县| 游戏| 延寿县| 东阳市| 土默特右旗| 新宾| 汉阴县| 南乐县| 张家港市| 萝北县| 司法| 富平县| 建水县| 广东省| 永德县| 千阳县| 汕头市| 大同县| 安顺市| 星子县| 桃园市| 榕江县| 华阴市| 罗源县| 邯郸县| 南丹县| 抚宁县| 绵竹市| 运城市| 汉川市| 区。| 全州县| 车致| 江都市|