我知道这个问题曾多次被问过,但没有人能够为我提供解决方案。我读了这些:
__init__() takes exactly 2 arguments (1 given)?
class __init__() takes exactly 2 arguments (1 given)
我要做的就是为#34生存游戏创建两个课程"就像一个非常糟糕的我的世界版本。 Bellow是这两个类的完整代码:
class Player:
'''
Actions directly relating to the player/character.
'''
def __init__(self, name):
self.name = name
self.health = 10
self.shelter = False
def eat(self, food):
self.food = Food
if (food == 'apple'):
Food().apple()
elif (food == 'pork'):
Food().pork()
elif (food == 'beef'):
Food().beef()
elif (food == 'stew'):
Food().stew()
class Food:
'''
Available foods and their properties.
'''
player = Player()
def __init__(self):
useless = 1
Amount.apple = 0
Amount.pork = 0
Amount.beef = 0
Amount.stew = 0
class Amount:
def apple(self):
player.health += 10
def pork(self):
player.health += 20
def beef(self):
player.health += 30
def stew(self):
player.health += 25
现在是完整的错误:
Traceback (most recent call last):
File "/home/promitheas/Desktop/programming/python/pygame/Survive/survive_classe s.py", line 26, in <module>
class Food:
File "/home/promitheas/Desktop/programming/python/pygame/Survive/survive_classe s.py", line 30, in Food
player = Player()
TypeError: __init__() takes exactly 2 arguments (1 given)
我只想让课程有效。
答案 0 :(得分:6)
您使用的代码如下:
player = Player()
这是一个问题,因为根据您的代码,__init__
必须由一个名为name
的参数提供。因此,要解决您的问题,只需为Player构造函数提供一个名称,您就完成了设置:
player = Player('sdfasf')
答案 1 :(得分:2)
问题是,在初始化Class实例时,类Player
的{{1}}函数接受__init__
参数。创建类实例时会自动处理第一个参数name
。所以你必须改变
self
到
player = Player()
启动并运行程序。
答案 2 :(得分:2)
__init__()
是实例化类时调用的函数。因此,在创建实例时需要传递__init__
所需的任何参数。所以,而不是
player = Player()
使用
player = Player("George")
第一个参数是隐式self
,在实例化时不需要包含它。但是,name
是必需的。您收到错误是因为您没有收到错误。
答案 3 :(得分:0)
您的代码知道您希望在__init__
中输入您不想要的内容。
我在下面做了一个简单的例子,它可以让你知道错误__init__() takes exactly 2 arguments (1 given)
的来源。
我做了什么,我做了一个定义,我给useless
输入。
我从__init__
开始称这个定义。
示例代码:
class HelloWorld():
def __init__(self):
self.useThis(1)
def useThis(self, useless):
self.useless = useless
print(useless)
# Run class
HelloWorld()
如果您有def exampleOne(self)
之类的定义,则不会有任何意见。它只是看起来本身。
但def exampleTwo(self, hello, world)
需要两个输入。
因此,要将这两个称为:
self.exampleOne()
self.exampleTwo('input1', 'input2')