【问题标题】:TypeError: Missing one required positional argument [duplicate]TypeError:缺少一个必需的位置参数[重复]
【发布时间】:2018-11-08 16:54:17
【问题描述】:

我正在开发一个游戏作为一个有趣的副项目,我遇到了这个错误,我真的不知道为什么会发生......

代码如下:

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]

有什么想法吗?

【问题讨论】:

    标签: python object typeerror


    【解决方案1】:

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

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

    详细说明您遇到的错误:

    TypeError: turn() 缺少 1 个必需的位置参数:'playerImages'

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

    【讨论】:

      【解决方案2】:

      你需要使用 () 和类名

      按照下面的代码进行

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

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 2022-01-27
        • 2013-07-06
        • 2019-06-25
        • 2013-10-02
        • 2021-02-08
        • 2020-06-13
        • 2021-07-25
        相关资源
        最近更新 更多