类定义外部的Python函数赋值导致参数异常

Python function assignment outside class definition causes argument exception(类定义外部的Python函数赋值导致参数异常)
本文介绍了类定义外部的Python函数赋值导致参数异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在一个动态编程环境中工作,在那里我可能需要定义(或重新定义)一个类函数。因此,请考虑以下示例:

def func(self):
    print("hello2 
")

class ManClass:
    def __init__(self):
        pass
    def func1(self):
        print("hello1
")

a = ManClass()

a.func1()
hello1

a.func2 = func
>>> a.func2()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: func() takes exactly 1 argument (0 given)

如果函数2()是在类内部定义的--a.unc2()会被解释为ManClass.unc2(A)--但现在我将其赋给外部,它似乎需要一个参数。我如何解决这个问题,但更重要的是,为什么这两个定义之间的差异会如此之大?

推荐答案

您没有将func添加到类中,而是将其添加到实例中。请尝试ManClass.func2 = func

a.func2 = funcfunc作为名为func2的实例属性添加到类的func实例中,而不是作为实例成员方法(这实际上只是对基础类对象上的可调用成员的特殊处理)。

或者,您也可以使用MethodType将成员方法添加到单个实例中,就像@jonrSharpe在他的回答中指出的那样。

这篇关于类定义外部的Python函数赋值导致参数异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)