码迷,mamicode.com
首页 > 编程语言 > 详细

python 类的创建和使用

时间:2020-02-14 13:01:50      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:无法   http   类的构造函数   调用   com   互调   blog   实例化   ref   

原文:https://www.runoob.com/python3/python3-class.html

原文:https://www.cnblogs.com/danhuai/p/11731319.html

 

class MyClass:
    """一个简单的类实例"""
    i = 12345
    def f(self):
        return hello world
 
# 实例化类
x = MyClass()
 
# 访问类的属性和方法
print("MyClass 类的属性 i 为:", x.i)
print("MyClass 类的方法 f 输出为:", x.f())

 

class TestDate:
    a = 1

    # "__init__"为类的构造函数
    def __init__(self):
        self.a = 666
        pass

    def a_1(self):
        print("a_1")
        self.a_2()

    def a_2(self):
        print(self.a)
        print("a_2")


if __name__ == "__main__":
    # 实例化类的时候 需要加"()",如TestDate(),若只写成TestDate 则类内部的方法无法相互调用
    td = TestDate()
    td.a_1()

 

python 类的创建和使用

标签:无法   http   类的构造函数   调用   com   互调   blog   实例化   ref   

原文地址:https://www.cnblogs.com/guxingy/p/12306905.html

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