码迷,mamicode.com
首页 > 其他好文 > 详细

面向对象类成员之类方法

时间:2018-10-13 22:57:29      阅读:329      评论:0      收藏:0      [点我收藏+]

标签:xxx   print   self   span   __init__   stat   bsp   style   对象   

# 类方法,属于类,通过类来调用。

# 自动传参cls

class Provice:
    # 静态字段,类中
    country = "China"

    def __init__(self, name):
        temp = "xxx"
        # 普通字段,对象中(self就是对象)
        self.name = name

    # 普通方法,类中
    def show(self):
        print("show")

    # 静态方法,()中没有self;但是可以传值
    # 静态方法属于类,通过类调用。
    @staticmethod
    def xo(bk):
        print("xo")
        print(bk)

    # 类方法
    @classmethod
    def xxoo(cls):
        print("xxoo",cls)

# 通过类来调用。
Provice.xxoo()

 

面向对象类成员之类方法

标签:xxx   print   self   span   __init__   stat   bsp   style   对象   

原文地址:https://www.cnblogs.com/xuwenwei/p/9784335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!