我有以下代码:

class SphericalRefraction(OpticalElement):
    def __init__(self, r0, normal, curvature, n, h):
        self._r0 = r0
        self._normal = normal/npl.norm(normal)
        self._curvature = curvature
        self._n = n
        self._aperture = h

def OutputPlane(SphericalRefraction):
    def __init__(self, r0, normal, h=15):
        SphericalRefraction.__init__(self, r0=r0, normal=normal, curvature=0, n=1, h=h)

但是当我在我的main中构造一个类OutputPlane时:
screen = r.OutputPlane(np.array([0,0,f]),np.array([0,0,1]), 5)

我有以下错误:
TypeError: OutputPlane() takes exactly 1 argument (3 given)

我做错了什么?我该怎么做才能从SphericalRefraction继承OutputPlane?

最佳答案

您没有继承SphericalRefraction,因为您像函数一样定义了OutputPlane,而不像类。
所以def OutputPlane(SphericalRefraction):
应该是
class OutputPlane(SphericalRefraction):

09-11 17:30