美文网首页
特殊方法

特殊方法

作者: 征途_星辰大海 | 来源:发表于2019-11-08 16:45 被阅读0次
    类别 方法名
    字符串/字节序列 __repr__, __str__, __format__, __bytes__
    数值转换 __abs__, __bool__, __complex__, __int__, __float__, __hash__, __index__
    集合 __len__, __getitem__, __setitem__, __delitem__, __contains__
    迭代 __iter__, __reversed__, __next__
    可调用模拟 __call__
    上下文 __enter__, __exit__
    实例创建和销毁 __init__, __new__, __del__
    属性管理 __getattr__, __getattr__, __setattr__, __delattr__, __dir__
    属性描述符 __get__, __set__, __delete__
    类相关 __prepare__, __instancecheck__, __subclasscheck__

    相关文章

      网友评论

          本文标题:特殊方法

          本文链接:https://www.haomeiwen.com/subject/ifkwbctx.html