我尝试制作一个Clicker并且我使用了无限循环,所以我会每秒都提高我的变量。但每次我使用Button时,我的程序崩溃了。 你对我如何防止这种情况有任何建议吗,因为我不知道究竟发生了什么。
import time
from tkinter import *
class Clicker :
#updates the Label
def AK_CLabel(self):
self.ClickerLabel.configure(text="Du hast " + str(self.Clicks))
#Generates Clicks
def Klicken(self):
self.Clicks += 1
self.AK_CLabel()
#raises price of Helping Elf and raises the clicks per second
def HElf(self) :
if(self.Clicks >= self.priceHElf) :
self.Clicks -= self.priceHElf
self.priceHElf = self.priceHElf * 1.2
self.Elfs += 1
self.Elfhilft()
self.AK_CLabel()
#Should make the Clicks go up by the amount of Elfs, but if I use the Button the Programm shuts down
def Elfhilft(self):
while (not time.sleep(5)):
self.Clicks = self.Bitcoins1 + self.Elfs
time.sleep(1)
def __init__(self, master):
self.master = master
self.master.title = "Der Klicker"
self.Elfs = 0
self.priceHElf = 30
self.Clicks = 30
#Buttons and Label
self.DerKnopf = Button(text = "Clicks", command = self.Klicken)
self.ClickerLabel = Label(text = "You have " +str(self.Clicks))
self.HelferElf = Button(text = "A helping Fairy", command = self.HElf)
self.DerKnopf.pack()
self.ClickerLabel.pack()
self.HelferElf.pack()
root = Tk()
my_gui = Clicker(root)
root.mainloop()
答案 0 :(得分:0)
首先,在您的示例中bitcoins1
未声明。我假设这只是一个您在发布前忘记更改的变量名称,因此我将其重命名为clicks
以便复制您的问题。
其次,您使用Elfhilft()
使用sleep()
功能,这会导致您的Tkinter应用程序出现问题。 Tkinter使用自己的循环系统来处理实时内容,sleep
将导致该循环在大多数情况下停止。我建议你使用after
(How to create a timer using tkinter?)的实现来复制我认为你试图实现的autoclicker-esque函数。举个例子:
def autoclick(self):
self.clicks = self.clicks + self.Elfs
#In main app / __init__()
root.after(1000, self.autoclick) # updates auto-clicks every second