简体   繁体   English

AttributeError:类型对象没有属性“id”PYTHON

[英]AttributeError: type object has no attribute "id" PYTHON

So I was trying to make a basic python pong game when this error came up: It seems to say that AttributeError: type object has no attribute "id" which I have no idea what it means.所以当这个错误出现时,我试图制作一个基本的 python pong 游戏:它似乎是说 AttributeError: type object has no attribute "id" 这我不知道它是什么意思。

C:\Users\****\AppData\Local\Programs\Python\Python35-32\python.exe C:/Users/****/untitled/src/testing.py
Traceback (most recent call last):
  File "C:/Users/****/untitled/src/testing.py", line 113, in <module>
    ball.draw()
  File "C:/Users/****/untitled/src/testing.py", line 36, in draw
    if self.hit_paddle2(pos) == True:
  File "C:/Users/****/untitled/src/testing.py", line 53, in hit_paddle2
    paddle2_pos = self.canvas.coords(self.paddle2.id)
AttributeError: type object 'Paddle2' has no attribute 'id'

Process finished with exit code 1

This is the code I used:这是我使用的代码:

from tkinter import *
import random
import time

tk = Tk()
tk.title("Game")
tk.resizable(0, 0)
tk.wm_attributes("-topmost", 1)
canvas = Canvas(tk, width=500, height=400, bd=0, highlightthickness=0)
canvas.pack()
tk.update()


class Ball:
    def __init__(self, canvas, paddle, paddle2, color):
        self.canvas = canvas
        self.paddle = paddle
        self.paddle2 = paddle2
        self.id = canvas.create_oval(10, 10, 25, 25, fill=color)
        self.canvas.move(self.id, 245, 100)
        starts = [-3, -2, -1, 1, 2, 3]
        random.shuffle(starts)
        self.x = starts[0]
        self.y = -3
        self.canvas_height = self.canvas.winfo_height()
        self.canvas_width = self.canvas.winfo_width()
        self.hit_bottom = False

    def draw(self):
        self.canvas.move(self.id, self.x, self.y)
        pos = self.canvas.coords(self.id)
        if pos[1] <= 0:
            self.y = 3
        if self.hit_paddle(pos) == True:
            self.y = -3
        if self.hit_paddle2(pos) == True:
            self.y = 3
        if pos[3] >= self.canvas_height:
            self.hit_bottom = True
        if pos[0] <= 0:
            self.x = 3
        if pos[2] >= self.canvas_width:
            self.x = -3

    def hit_paddle(self, pos):
        paddle_pos = self.canvas.coords(self.paddle.id)
        if pos[2] >= paddle_pos[0] and pos[0] <= paddle_pos[2]:
            if pos[3] >= paddle_pos[1] and pos[3] <= paddle_pos[3]:
                return True
        return False

    def hit_paddle2(self, pos):
        paddle2_pos = self.canvas.coords(self.paddle2.id)
        if pos[2] >= paddle2_pos[0] and pos[0] <= paddle2_pos[2]:
            if pos[3] >= paddle2_pos[1] and pos[3] <= paddle2_pos[3]:
                return True
        return False


class Paddle:
    def __init__(self, canvas, color):
        self.canvas = canvas
        self.id = canvas.create_rectangle(0, 0, 100, 10, fill=color)
        self.canvas.move(self.id, 200, 300)
        self.x = 0
        self.canvas_width = self.canvas.winfo_width()
        self.canvas.bind_all('<KeyPress-Left>', self.turn_left)
        self.canvas.bind_all('<KeyPress-Right>', self.turn_right)

    def turn_left(self, evt):
        self.x = -2

    def turn_right(self, evt):
        self.x = 2

    def draw(self):
        self.canvas.move(self.id, self.x, 0)
        pos = self.canvas.coords(self.id)
        if pos[0] <= 0:
            self.x = 0
        elif pos[2] >= self.canvas_width:
            self.x = 0

class Paddle2:
    def __init__(self, canvas, color):
        self.canvas = canvas
        self.id = canvas.create_rectangle(0, 10, 100, 10, fill=color)
        self.canvas.move(self.id, 200, 300)
        self.x = 0
        self.canvas_width = self.canvas.winfo_width()
        self.canvas.bind_all('<KeyPress-W>', self.turn_left)
        self.canvas.bind_all('<KeyPress-A>', self.turn_right)

    def turn_left(self, evt):
        self.x = -2

    def turn_right(self, evt):
        self.x = 2

    def draw(self):
        self.canvas.move(self.id, self.x, 0)
        pos = self.canvas.coords(self.id)
        if pos[0] <= 0:
            self.x = 0
        elif pos[2] >= self.canvas_width:
            self.x = 0

paddle = Paddle(canvas, 'blue')
ball = Ball(canvas, paddle, Paddle2, 'red')
paddle2 = Paddle2(canvas, 'blue')
while 1:
    if ball.hit_bottom == False:
        ball.draw()
        paddle.draw()
        paddle2.draw()
    tk.update_idletasks()
    tk.update()
    time.sleep(0.01)

You need to pass instances of Paddle and Paddle2 to Ball constructor.您需要将PaddlePaddle2实例Paddle2Ball构造函数。

paddle = Paddle(canvas, 'blue')
paddle2 = Paddle2(canvas, 'blue')
ball = Ball(canvas, paddle, paddle2, 'red')
paddle = Paddle(canvas, 'blue')
ball = Ball(canvas, paddle, Paddle2, 'red')
paddle2 = Paddle2(canvas, 'blue')

should you pass in the paddle2 instance?你应该传入 paddle2 实例吗? like this?像这样?

paddle = Paddle(canvas, 'blue')
paddle2 = Paddle2(canvas, 'blue')
ball = Ball(canvas, paddle, paddle2, 'red')

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 AttributeError 类型对象 Person 没有属性 id - AttributeError type object Person has no attribute id 修复 Python 中的“AttributeError: type object has no attribute” - Fix “AttributeError: type object has no attribute” in Python Python:AttributeError:&#39;NoneType&#39;对象没有属性&#39;type&#39; - Python: AttributeError: 'NoneType' object has no attribute 'type' AttributeError类型的对象没有属性 - AttributeError type object has no attribute python对象AttributeError:类型对象'Track'没有属性'title' - python object AttributeError: type object 'Track' has no attribute 'title' python sqlalchemy AttributeError: 'BaseQuery' object 没有属性 'id' - python sqlalchemy AttributeError: 'BaseQuery' object has no attribute 'id' Python AttributeError: Object 没有属性 - Python AttributeError: Object has no attribute Selenium Webdriver Python AttributeError类型对象没有属性 - Selenium Webdriver Python AttributeError type object has no attribute AttributeError: &#39;Response&#39; 对象没有属性 &#39;type&#39; - Python Web Scraping Request - AttributeError: 'Response' object has no attribute 'type' - Python Web Scraping Request Python Web套接字AttributeError:类型对象&#39;_socketobject&#39;没有属性&#39;gethostbyname&#39; - Python Web Socket AttributeError: type object '_socketobject' has no attribute 'gethostbyname'
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM