美文网首页
01-内置类属性

01-内置类属性

作者: 阅心_5cc2 | 来源:发表于2018-08-01 17:09 被阅读0次
内置类属性:python中每个类都拥有内置的类属性
__name__
__doc__
__dict__
__module__
__bases__
class Cat():
    """说明文档  猫类"""
    number = 0
    def __init__(self,name='',color=''):
        self.name = name
        self.color = color

    def fun(self):
        print('%s在跑'%self.name)
    @staticmethod
    def shout():
        print('喵')
    @classmethod
    def get_number(cls):
        print('猫的数量:%d'%cls.number)


class Animal:
    """动物类"""



if __name__ == '__main__':
    cat1 = Cat('花','white')
    """
    1.类.__name__
    获取类的名字(字符串)
    """
    print(Cat.__name__)
    """
    2.类.__doc__
    获取类的说明文档

    """
    print(Cat.__doc__)
    print(dict.__doc__)


    """
    3.类.__dict__    :获取类中所有的类属性和对应的值,以键值对的形式存到字典里面
      对象.__dict__  :将对象的属性和对应的值,转换成字典的元素(常用,记住)
    """
    print(Cat.__dict__)
    print(cat1.__dict__)


    """
    4.类.__module__:获取当前类所在模块的名字
    """
    print (Cat.__module__)


    """
    5.类.__bases__:获取当前类的父类
    """
    print(Cat.__bases__)

运行结果如下:

Cat
说明文档  猫类
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
    (key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
    d = {}
    for k, v in iterable:
        d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
    in the keyword argument list.  For example:  dict(one=1, two=2)
{'__module__': '__main__', '__doc__': '说明文档  猫类', 'number': 0, '__init__': <function Cat.__init__ at 0x00000000026C8D90>, 'fun': <function Cat.fun at 0x00000000026C8E18>, 'shout': <staticmethod object at 0x00000000026D0320>, 'get_number': <classmethod object at 0x00000000026D0390>, '__dict__': <attribute '__dict__' of 'Cat' objects>, '__weakref__': <attribute '__weakref__' of 'Cat' objects>}
{'name': '花', 'color': 'white'}
__main__
(<class 'object'>,)


相关文章

  • day13面向对象(1)

    01-内置类属性 内置类属性:python中每个类都拥有内置的类属性 02私有化 python中,类和属性的私有化...

  • day13-面向对象2

    01-内置类属性 内置类属性:python中每个类都拥有内置的类属性 02-私有化 03-getter和sette...

  • 面向对象(基础)

    内置类属性 内置类属性:python中每个类都拥有内置的类属性1.类._name_获取类的名字(str)2.类._...

  • 13面向对象2

    内置类属性 内置类属性:python中每个类都拥有内置的类属性 1.类.name:获取类的名字(字符串) 2.类....

  • day13-笔记

    1.内置类属性 from color import Color"""内置类属性:python中每个类都拥有内置的类...

  • 2018-08-01day-13

    一、内置类属性 内置类属性:python中每个类都拥有内置的类属性namedocdictmodulebases 1...

  • Day12-面向对象

    1、内置类属性 Python中每个类都拥有内置的类属性 类 . __ name __获取类的名字 类 . __ d...

  • day_13面向对象基础2

    1.内置类属性 内置类属性:python中每个类都拥有内置的类属性_name:获取类的名字(字符串)_doc:获取...

  • day13 面向对象基础2

    01 内置类属性 内置类属性:python中每个类都拥有内置的类属性 __name____doc____dict_...

  • 面向对象2

    一、内置类属性 内置类属性:在python中每个类都有内置的类属性__name____doc____dict___...

网友评论

      本文标题:01-内置类属性

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