class and inheritance_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > class and inheritance

class and inheritance

 2014/5/21 17:09:44  kanglecjr  程序员俱乐部  我要评论(0)
  • 摘要:classandinheritanceclassBase:def__init__(self):self.data=[]defadd(self,x):self.data.append(x)defaddtwice(self,x):self.add(x)self.add(x)#ChildextendsBaseclassChild(Base):defplus(self,a,b):returna+boChild=Child()oChild.add("str1")oChild.addtwice("up")
  • 标签:class
class and inheritance

class Base:
	def __init__(self):
		self.data = []
	def add(self, x):
		self.data.append(x)
	def addtwice(self, x):
		self.add(x)
		self.add(x)
		

# Child extends Base
class Child(Base):
	def plus(self,a,b):
		return a+b
		
oChild=Child()
oChild.add("str1")
oChild.addtwice("up");
print oChild.data
print oChild.plus(2,3)
print str(type(oChild.data))
print type(oChild.data)


U:\code>python tt.py
['str1', 'up', 'up']
5
<type 'list'>
<type 'list'>
发表评论
用户名: 匿名