标签: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) # 类.函数 与函数的区别
标签:new return 参数 sel self 函数 one 定义 init
原文地址:http://www.cnblogs.com/think-and-do/p/6358017.html