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

Python 类的使用一

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

标签:python类


一,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 类的使用一

标签:python类

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

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