Python – 覆盖实例的__getattribute__?

Python – 覆盖实例的__getattribute__?,第1张

概述这个对我来说似乎有点棘手.前段时间我已经设法用以下内容覆盖实例的方法: def my_method(self, attr): passinstancemethod = type(self.method_to_overwrite)self.method_to_overwrite = instancemethod(my_method, self, self.__class__) 这对我很 这个对我来说似乎有点棘手.前段时间我已经设法用以下内容覆盖实例的方法:

def my_method(self,attr):    passinstancemethod = type(self.method_to_overwrite)self.method_to_overwrite = instancemethod(my_method,self,self.__class__)

这对我很有用;但现在我试图覆盖一个实例的__getattribute __()函数,这对我来说不起作用,因为该方法似乎是

<type 'method-wrapper'>

有可能做任何事情吗?我在method-wrapper上找不到任何合适的Python文档.

解决方法 我相信method-wrapper是用C编写的方法的包装器. 总结

以上是内存溢出为你收集整理的Python – 覆盖实例的__getattribute__?全部内容,希望文章能够帮你解决Python – 覆盖实例的__getattribute__?所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存