过去一周我一直在玩Python,我遇到了将4个参数传递给类方法的问题。
以下是在其类中定义的类方法:
class Line:
locx0 = 0
locy0 = 0
locx1 = 0
locy1 = 0
def __init__(self):
print'<<Line __init__()>>'
def setLineCoordinates(locx0, locy0, locx1, locy1):
self.locx0 = locx0
self.locy0 = locy0
self.locx1 = locx1
self.locy1 = locy1
def getLineCoordinatesX0():
return self.x0
def getLineCoordinatesY0():
return self.y0
def getLineCoordinatesX1():
return self.x1
def getLineCoordinatesY0():
return self.y0
以下是我调用类方法的地方:
def LineDepot():
x0 = None
x1 = None
y0 = None
y1 = None
line = Line()
print"Please enter starting and ending coordinates "
print"If no value is entered, then it will be assumed that the coordinate value is zero "
x0 = int(input('Enter value for initial x coordiante : '))
y0 = int(input('Enter value for initial y coordiante : '))
x1 = int(input('Enter value for end x coordiante :'))
y1 = int(input('Enter value for end y coordiante :'))
line.setLineCoordinates(x0, y0, x1, y1)
这是我在输出中遇到的错误:
Please make a selection from the following menu...
1.Create a new Line
2.View current lines
3.View logs
4.Mail line info or logs
5.View summary of line stats
6.Exit this program
Menu Selection:1
<<Line __init__()>>
Please enter starting and ending coordinates
If no value is entered, then it will be assumed that the coordinate value is zero
Enter value for initial x coordiante : 1
Enter value for initial y coordiante : 2
Enter value for end x coordiante :3
Enter value for end y coordiante :4
Traceback (most recent call last):
File "./linear.line.py", line 107, in <module>
Main()
File "./linear.line.py", line 15, in Main
Menu()
File "./linear.line.py", line 52, in Menu
LineDepot()
File "./linear.line.py", line 32, in LineDepot
line.setLineCoordinates(x0, y0, x1, y1)
TypeError: setLineCoordinates() takes exactly 4 arguments (5 given)
我试图找出我的生活,为什么当我传递4个参数时,解释器就是 告诉我,我正试图通过5。
我已经并将继续研究这个问题。
对此的任何帮助将不胜感激。 感谢!!!
答案 0 :(得分:5)
您的定义中缺少自我
当调用类方法时,python将对象引用包含为第一个函数参数
def setLineCoordinates(self,x0,y0,x1,y1)
def getLineCoordinatesX0(self):
...
答案 1 :(得分:4)
您忘记将self
添加到类方法的定义中。第一个参数(按惯例称为self
)包含对对象实例的引用,它需要在定义中显式写入,而在调用方法时将隐式添加它。
def setLineCoordinates(self, locx0, locy0, locx1, locy1):
etc...
应该更好。
答案 2 :(得分:3)
FYI - 这是一个实例方法而不是类方法。 python中有三种方法类型。
class
对象作为第一个参数的方法class
实例作为第一个参数的方法每种方法类型都有不同的用途和用途。正如其他人所说,您缺少实例方法的self
实例参数。以下是每种方法类型的一个小例子,以及如何调用它们进行比较。
class C:
c_class_var = 1
def __init__(self):
self.instance_var = 2
def instance_method(self):
print
print 'instance_method called for object', self
print 'dir()', dir()
print 'dir(self)', dir(self)
@staticmethod
def static_method():
print
print 'static_method called, no context exists!'
print 'dir()', dir()
@classmethod
def class_method(cls):
print
print 'class_method called for class', cls
print 'dir()', dir()
print 'dir(cls)', dir(cls)
class D(C):
d_class_var = 3
c_obj = C()
c_obj.instance_method()
C.static_method()
C.class_method()
d_obj = D()
d_obj.instance_method()
D.static_method()
D.class_method()
这是输出:
instance_method called for object <__main__.C instance at 0x00A706E8>
dir() ['self']
dir(self) ['__doc__', '__init__', '__module__', 'c_class_var', 'class_method', 'instance_method', 'instance_var', 'static_method']
static_method called, no context exists!
dir() []
class_method called for class __main__.C
dir() ['cls']
dir(cls) ['__doc__', '__init__', '__module__', 'c_class_var', 'class_method', 'instance_method', 'static_method']
instance_method called for object <__main__.D instance at 0x00A70710>
dir() ['self']
dir(self) ['__doc__', '__init__', '__module__', 'c_class_var', 'class_method', 'd_class_var', 'instance_method', 'instance_var', 'static_method']
static_method called, no context exists!
dir() []
class_method called for class __main__.D
dir() ['cls']
dir(cls) ['__doc__', '__init__', '__module__', 'c_class_var', 'class_method', 'd_class_var', 'instance_method', 'static_method']
答案 3 :(得分:2)
您忘了将self放在方法名称中。
class Line():
def setLineCoordinates(self,locx0, locy0, locx1, locy1):
self.locx0 = locx0
self.locy0 = locy0
self.locx1 = locx1
self.locy1 = locy1
def getLineCoordinatesX0(self):
return self.x0
在python中,自变量的传递必须是显式的(它不像C ++那样隐式)。
答案 4 :(得分:1)
您的函数定义缺少`self
def setLineCoordinates(self, locx0, locy0, locx1, locy1):
self.locx0 = locx0
....