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

python class, __init__,self.

时间:2017-01-30 12:31:55      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:new   return   参数   sel   self   函数   one   定义   init   

#coding=utf-8

"""

1.如何去定义一个最基本的class
2.class最基本的子元素
3.class传参
4.__init__方法
5.class和函数的区别

"""



class test(object):           # 是函数的集合



    def __init__(self,var1):  # self 就是class
        self.var1 = var1


    def get(self,a=None):     # get 被称之为test对象的方法
        return self.var1

    pass



def get(a):
    return a

t = test(test str heiheihei)    # t是类test的一个实例
print t.get()

"""
如何去使用对象内置的方法
1.实例化这个class (test) t = test()
2.使用 class.method()的方式去调用 class 的内置方法

注意:
1.当定义一个class的内置方法method时,method的参数的第一个永远是self。
"""

# new_var = 4

# print t.get(new_var)
# print get(new_var)           # 类.函数 与函数的区别

 

python class, __init__,self.

标签:new   return   参数   sel   self   函数   one   定义   init   

原文地址:http://www.cnblogs.com/think-and-do/p/6358017.html

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