免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4727 | 回复: 2
打印 上一主题 下一主题

问一个关于super函数的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-10-20 12:14 |只看该作者 |倒序浏览
我用如下这段代码调用父类SGMLParser的reset方法,可是初始化时就报错了。查了super的文档,对它的几种调用形式没怎么理解。请各位指教,谢谢
>>> class URLLister(SGMLParser):
        def reset(self):
                super(URLLister, self).reset()
                self.urls = []

       
>>> parser = URLLister()

Traceback (most recent call last):
  File "<pyshell#52>", line 1, in <module>
    parser = URLLister()
  File "G:\Python 2.7.2\lib\sgmllib.py", line 69, in __init__
    self.reset()
  File "<pyshell#51>", line 3, in reset
    super(URLLister, self).reset()
TypeError: must be type, not classobj

论坛徽章:
3
卯兔
日期:2013-08-15 13:17:31处女座
日期:2014-01-10 11:35:23双子座
日期:2014-01-25 02:16:06
2 [报告]
发表于 2013-10-20 17:13 |只看该作者
SGMLParser应该是一个旧式的类,不是新式的类。

论坛徽章:
0
3 [报告]
发表于 2013-10-20 22:09 |只看该作者
回复 2# sunny7476
嗯。是的。后来我也意识到了这一点,写了一些简单的类验证了一下,的确如此:

#旧式类不能使用super
>>> class OldStyle:
        def display(self):
                print "This is the old-style base class"

               
>>> class Extend(OldStyle):
        def display(self):
                super(Extend, self).display()
                print "This is the subclass of the OldStyle"

               
>>> old = Extend()
>>> old.display()

Traceback (most recent call last):
  File "<pyshell#11>", line 1, in <module>
    old.display()
  File "<pyshell#9>", line 3, in display
    super(Extend, self).display()
TypeError: must be type, not classobj


#新式类可以使用super
>>> __metaclass__ = type
>>> class NewStyle:
        def display(self):
                print "This is the new-style base class"

               
>>> class Extend(NewStyle):
        def display(self):
                super(Extend, self).display()
                print "This is the subclass of the NewStyle"

               
>>> ex = Extend()
>>> ex.display()
This is the new-style base class
This is the subclass of the NewStyle
   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP