- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我对 python 有点陌生,但熟悉 OOP。我正在尝试使用 PyGame 编写游戏。基本上,我的目标是每隔几秒渲染一次树,并在屏幕上移动树矩形。
这是我的代码:
from collections import deque
import pygame,random,sys
pygame.init()
size = 800,600
screen = pygame.display.set_mode(size)
class tree:
def __init__(self):
self.img = pygame.image.load("tree.png")
self.rect = self.img.get_rect()
def render(self):
screen.blit(self.img,self.rect)
def move(self,x,y):
self.rect = self.rect.move(x,y)
#creating a queue of trees
trees = deque()
#appending the first tree on to the queue
trees.append(tree())
while 1:
for event in pygame.event.get():
if event.type == pygame.QUIT: sys.exit()
#appending tree() to trees queue every 300 ms
if pygame.time.get_ticks() % 300 == 0:
trees.append(tree())
#rendering and moving all the tree rects of trees in the queue
for tree in trees:
tree.render()
tree.move(20,2)
pygame.display.flip()
但是当我执行此操作时,前几棵树已成功生成,但随后 PyGame 窗口关闭并出现此错误:
Traceback (most recent call last):
File "error.py", line 25, in <module>
trees.append(tree())
AttributeError: tree instance has no __call__ method
最佳答案
我猜这是因为你有一个变量名 tree
(在 tree.render()
中使用)与你的类名冲突。称它为 Tree
会更好(而且更像 pythonic ^^)。
关于python - 属性错误 : Class Instance has no __call__ method,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11324589/
class Meta(type): def __call__(cls, *args, **kwargs): print 'Meta.__call__ called.'
一个非常简单的类不是可调用类型: >>> class myc: ... pass ... >>> c=myc() >>> callable(c) False 如何判断一个类是否有方法__cal
我想在 python 中实现单例模式,我喜欢 http://www.python-course.eu/python3_metaclasses.php 中描述的模式. class Singleton(t
根据我对 Python 面向对象编程的所有了解,如果一个类定义了 __call__ 方法,如果我们像函数调用一样使用该类的实例,该方法将被调用。例如: class Employee: def
Python 的神奇方法 __call__ 会在您尝试调用对象时被调用。 Cls()() 因此等于 Cls.__call__(Cls())。 函数是 Python 中的第一类对象,这意味着它们只是可调
在 python 中,您可以通过实现 __call__ 方法使实例可调用。例如 class Blah: def __call__(self): print "hello" ob
我需要在测试中修补当前日期时间。我正在使用这个解决方案: def _utcnow(): return datetime.datetime.utcnow() def utcnow():
我知道类中的 __call__ 方法是在调用类的实例时触发的。但是,我不知道什么时候可以使用这种特殊方法,因为可以简单地创建一个新方法并执行在 __call__ 方法中完成的相同操作,而不是调用实例,
本节再介绍 Python 类中一个非常特殊的实例方法,即 __call__()。该方法的功能类似于在类中重载 () 运算符,使得类实例对象可以像调用普通函数那样,以“对象名()”的形式使用。 举个例子
这个问题在这里已经有了答案: Overriding special methods on an instance (5 个回答) 关闭2年前。 我需要更改给定对象的 __call__ 方法的行为。天真
class Method(object): def __call__(self): #how could I get the App instance here?
我试图理解下面的代码。 class Chain(object): def __init__(self, path=''): self._path = path def
我正在浏览 Daniel Nouri 的 tutorial关于使用 CNN 的面部识别,我遇到了一些我不理解的代码。 Daniel 正在定义一个在网络训练期间每次迭代结束时调用的类,它将决定训练是否应
Python 的可调用对象是具有 __call__ 方法的对象。它们大部分时间是函数,但也可能是类实例。 但是函数确实有一个 __call__ 方法。因此,一个 __call__ 方法也有一个 __c
我正在用 Python 编写单元测试,我想创建一个模拟函数,在调用时返回另一个模拟(由我指定)。 这是我尝试过的: my_mock = Mock() fn = Mock() fn.__call__ =
以此为例: class Foo(object): def __init__(self, msg): self._msg = msg def __call__(self):
考虑以下代码: class MyCustomDescriptor: def __init__(self,foo): self._foo = foo def __call
我正在测试 simpleTAL 模板库,它使用 callable 来测试传入模板的对象是否为函数。 callable 的定义是说如果一个对象包含魔法方法__call__,那么它就是可调用的。另见 Wh
我在 python2.7 中使用 tkinter。我想要做的就是在一个类中绘制一个 Canvas ,然后在另一个类中绘制一个 Canvas ,该类将在 Canvas 周围移动一个正方形。但出于某种原因
我试图在运行时定义 __call__ dunder 方法,但没有成功。代码如下: class Struct: pass result=Struct() dictionary={'a':5,'b
我是一名优秀的程序员,十分优秀!