首页 > 编程语言 > 详细

Python 类的使用一

时间:2017-07-24 11:16:58      阅读:286      评论:0      收藏:0      [点我收藏+]


一,self含义


# -*- coding: utf-8 -*-
class person:
	def one(self,name,age):
		print "you name is %s and you age is %s." % (name, age)

p = person() #绑定实例
p.one("du",22)


执行结果:

you name is du and you age is 22.


其实self可以不必写成self,但是必须要有一个参数如下图

技术分享


详细了解可以参考博客:http://www.cnblogs.com/jessonluo/p/4717140.html





二,__init__初始化。

# -*- coding: utf-8 -*-
class person:
	def __init__(self,sex):
		self.sex = sex
	def one(self,name,age):
		print "you name is %s and you age is %s and sex is %s" % (name, age, self.sex)

p = person("boy") #绑定实例
p.one("du",22)


执行结果:

you name is du and you age is 22 and sex is boy


其实就相当于变量sex在类里。比函数大一级别。如下面的程序,和上面的执行结果是一样的。


# -*- coding: utf-8 -*-
class person:
	sex = "boy"
	def __init__(self,sex):
		#self.sex = sex
		pass
	def one(self,name,age):
		print "you name is %s and you age is %s and sex is %s" % (name, age, self.sex)

p = person("boy") #绑定实例
p.one("du",22)




技术分享

本文出自 “天道酬勤” 博客,请务必保留此出处http://tdcqvip.blog.51cto.com/12995943/1950270

Python 类的使用一

原文:http://tdcqvip.blog.51cto.com/12995943/1950270

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!