1. 程式人生 > >關於pyhton中的__xxx__格式的方法與變量的理解

關於pyhton中的__xxx__格式的方法與變量的理解

imp fault 初始化 **kwargs tor rep style ear dir()

python中類似__xx__的方法和變量是python系統內定義的方法和變量,都是具有特殊意義的基礎變量和方法,一般不要擅自使用,除非知道自己在幹什麽。

具體查看python內置模塊builtins.py,裏面定義了內置方法、對象和異常,這些定義是最基本的定義。

一、__xx__格式的方法:

一般定義在object類中,object類是大多數python類的基類,這些__xx__格式的方法代表了內置方法,是允許一個類的重要屬性。很多方法會被自動調用:

如類初始化時調用__init__()方法,str(obj)調用__str__()方法

內置函數與__xx__格式函數對應表:

dir __dir__

str __str__

dict __dict__

等等

class object:
""" The most base type """
def __delattr__(self, *args, **kwargs): # real signature unknown
""" Implement delattr(self, name). """
pass

def __dir__(self): # real signature unknown; restored from __doc__
"""
__dir__() -> list
default dir() implementation
"""
return []

def __eq__(self, *args, **kwargs): # real signature unknown
""" Return self==value. """
pass

def __format__(self, *args, **kwargs): # real signature unknown
""" default object formatter """
pass

def __getattribute__(self, *args, **kwargs): # real signature unknown
""" Return getattr(self, name). """
pass

def __ge__(self, *args, **kwargs): # real signature unknown
""" Return self>=value. """
pass

def __gt__(self, *args, **kwargs): # real signature unknown
""" Return self>value. """
pass

def __hash__(self, *args, **kwargs): # real signature unknown
""" Return hash(self). """
pass

def __init_subclass__(self, *args, **kwargs): # real signature unknown
"""
This method is called when a class is subclassed.

The default implementation does nothing. It may be
overridden to extend subclasses.
"""
pass

def __init__(self): # known special case of object.__init__
""" Initialize self. See help(type(self)) for accurate signature. """
pass

def __le__(self, *args, **kwargs): # real signature unknown
""" Return self<=value. """
pass

def __lt__(self, *args, **kwargs): # real signature unknown
""" Return self<value. """
pass

@staticmethod # known case of __new__
def __new__(cls, *more): # known special case of object.__new__
""" Create and return a new object. See help(type) for accurate signature. """
pass

def __ne__(self, *args, **kwargs): # real signature unknown
""" Return self!=value. """
pass

def __reduce_ex__(self, *args, **kwargs): # real signature unknown
""" helper for pickle """
pass

def __reduce__(self, *args, **kwargs): # real signature unknown
""" helper for pickle """
pass

def __repr__(self, *args, **kwargs): # real signature unknown
""" Return repr(self). """
pass

def __setattr__(self, *args, **kwargs): # real signature unknown
""" Implement setattr(self, name, value). """
pass

def __sizeof__(self): # real signature unknown; restored from __doc__
"""
__sizeof__() -> int
size of object in memory, in bytes
"""
return 0

def __str__(self, *args, **kwargs): # real signature unknown
""" Return str(self). """
pass

@classmethod # known case
def __subclasshook__(cls, subclass): # known special case of object.__subclasshook__
"""
Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.__subclasscheck__().
It should return True, False or NotImplemented. If it returns
NotImplemented, the normal algorithm is used. Otherwise, it
overrides the normal algorithm (and the outcome is cached).
"""
pass

__class__ = None # (!) forward: type, real value is ‘‘ __dict__ = {} __doc__ = ‘‘ __module__ = ‘‘

二、__xx__格式的變量:

關於pyhton中的__xxx__格式的方法與變量的理解