在Python中调用超类的类方法

在Python中调用超类的类方法,第1张

概述我正在开发Flask扩展,为Flask添加了CouchDB支持.为了更容易,我已经将couchdb.mapping.Document子类化,因此存储和加载方法可以使用当前的线程本地数据库.现在,我的代码看起来像这样: class Document(mapping.Document): # rest of the methods omitted for brevity @classmetho 我正在开发Flask扩展,为Flask添加了CouchDB支持.为了更容易,我已经将couchdb.mapPing.document子类化,因此存储和加载方法可以使用当前的线程本地数据库.现在,我的代码看起来像这样:

class document(mapPing.document):  # rest of the methods omitted for brevity  @classmethod  def load(cls,ID,db=None):    return mapPing.document.load(cls,db or g.couch,ID)

为简洁起见,我遗漏了一些,但那是重要的部分.但是,由于classmethod的工作方式,当我尝试调用此方法时,我收到错误消息

file "flaskext/couchdb.py",line 187,in load    return mapPing.document.load(cls,ID)TypeError: load() takes exactly 3 arguments (4 given)

我测试了用mapPing.document.load.im_func(cls,db或g.couch,ID)替换调用,它可以工作,但我对访问内部im_属性并不是特别高兴(即使它们已被记录).有没有人有更优雅的方式来处理这个?

解决方法 我想你实际上需要在这里使用super.无论如何,这是调用超类方法的更简洁的方法:

class A(object):    @classmethod    def load(cls):        return clsclass B(A):    @classmethod    def load(cls):        # return A.load() would simply do "A.load()" and thus return a A        return super(B,cls).load() # super figures out how to do it right ;-)print B.load()
总结

以上是内存溢出为你收集整理的在Python中调用超类的类方法全部内容,希望文章能够帮你解决在Python中调用超类的类方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1192385.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存