类型错误:缺少一个必需的位置参数

6

我在做一个有趣的副业项目,涉及到it技术,但我遇到了这个错误,真的不知道发生了什么...

以下是代码:

class players:
    def __init__(self, location, image_file, direction):
        self.location = location
        self.image_file = image_file
        self.direction = direction
        self.rect = self.image_file.get_rect()

    def turn(self, direction, playerImages):
        keys = pygame.key.get_pressed()
        if keys[pygame.K_a] == True:
            self.direction -= 1
            if self.direction < -3:
                self.direction = 3
        if keys[pygame.K_d] == True:
            self.direction = 1
            if self.direction > 3:
                self.direction = 3

        if self.direction == -3:
            self.image_file = playerImages[0]
        if self.direction == -2:
            self.image_file = playerImages[1]
        if self.direction == -1:
            self.image_file = playerImages[2]
        if self.direction == 0:
            self.image_file = playerImages[3]
        if self.direction == 1:
            self.image_file = playerImages[4]
        if self.direction == 2:
            self.image_file = playerImages[5]
        if self.direction == 3:
            self.image_file = playerImages[6]

        return self.direction, self.image_file

我称之为:“


skierDirection, playerImage = players.turn(skierDirection, playerImages)

我收到的错误信息是:
Traceback (most recent call last):
  File "C:\Users\Owen\Desktop\coding compile file\SkiFreeX\SkiFreeX.py", line 129, in <module>
    main()
  File "C:\Users\Owen\Desktop\coding compile file\SkiFreeX\SkiFreeX.py", line 122, in main
    skierDirection, playerImage = players.turn(skierDirection, playerImages)
TypeError: turn() missing 1 required positional argument: 'playerImages'
[Finished in 0.385s]

任何想法吗?
2个回答

10

不应直接调用类方法,而应创建该类的实例:

p1 = players(your, values, here)
skierDirection, playerImage = p1.turn(skierDirection, playerImages)

针对您遇到的错误做进一步解释:

TypeError: turn() missing 1 required positional argument: 'playerImages'

这是因为 turn 需要一个 players 的实例作为第一个参数 (self)。类方法总是将实例作为第一个参数传递,因此 p1.turn(skierDirection, playerImages) 实际上会向 players.turn 传递 3 个参数。


2
您需要使用类名()。
请参照以下代码:
```html

您需要使用类名()

请按照以下代码:

```
skierDirection, playerImage = players().turn(skierDirection, playerImages)

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接