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

python super()继承父类

时间:2017-05-16 15:46:12      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:foo   nic   new   view   object   display   logs   pytho   int   

 

 

技术分享
class Foo(object):
  def __init__(self, frob, frotz):
    self.frobnicate = frob
    self.frotz = frotz

class Bar(Foo):
  def __init__(self, frob, frizzle):
    super(Bar,self).__init__(frob,34)
    self.frazzle = frizzle

new = Bar("hello","world")
print (new.frobnicate )
print (new.frazzle )
print (new.frotz )

>>>
hello
world
34
View Code

 

python super()继承父类

标签:foo   nic   new   view   object   display   logs   pytho   int   

原文地址:http://www.cnblogs.com/ezway/p/6861578.html

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