完整代码:
result = float(self.previous_number) * float(self.current_number)
elif self.current_operation == '/':
result = float(self.previous_number) / float(self.current_number)
self.display_value.set(str(result))
self.current_operation = None
except ZeroDivisionError:
self.display_value.set("Error")
#定义`calculate`和`perform_operation`方法,用于执行计算并显示结果。`perform_operation`方法处理加、减、乘、除运算,并捕获除以零的错误
def create_buttons(self):
for i, btn in enumerate(self.buttons):
if btn == '=':
tk.Button(self.root, text=btn, font=('Arial', 24), command=lambda: self.calculate()).grid(row=5, column=i % 4, padx=2, pady=2)
elif btn in 'CCE':
tk.Button(self.root, text=btn, font=('Arial', 24), command=lambda b=btn: self.button_actions[b]()).grid(row=5, column=i % 4 + 4, padx=2, pady=2)
else:
tk.Button(self.root, text=btn, font=('Arial', 24), command=lambda b=btn: self.button_actions[b](b)).grid(row=(i // 4) + 1, column=(i % 4), padx=2, pady=2)
#在`create_buttons`方法中,使用`for`循环遍历按钮列表,为每个按钮创建一个`Button`控件,并根据按钮类型设置不同的命令和布局参数。对于操作符和等号按钮,使用`lambda`匿名函数来绑定对应的方法
# 创建主窗口
root = tk.Tk()
# 创建计算器实例
calc = Calculator(root)
# 启动事件循环
root.mainloop()
功能分析:
1. perform_operation 方法:该方法用于执行加、减、乘、除运算。它首先检查当前操作符,然后根据操作符执行相应的运算。如果当前操作符是加号或减号,它会将当前数字与前一个数字相加或相减。如果当前操作符是乘号或除号,它会将前一个数字与当前数字相乘或相除。计算结果通过 self.display_value.set(str(result))显示。如果尝试除以零,会捕获ZeroDivisionError异常,并显示错误信息 "Error"。
2. calculate 方法:这个方法用于执行最终的计算。
3. create_buttons 方法:这个方法遍历 self.buttons列表,为每个按钮创建一个 Tkinter 的 Button控件。 对于等号 "=" 按钮,使用 lambda`l表达式绑定 self.calculate方法,以便在点击时执行计算。 对于清除 "C"、清除输入 "C" (可能是指清除当前输入)、以及清除上一个输入 "E" 的按钮,同样使用 lambda表达式绑定一个方法,是self.button_actions字典中定义的。对于数字按钮和其他操作符,使lambda 表达式绑定self.button_actions字典中对应的方法,并传递按钮的文本作为参数。按钮使用 grid方法放置在特定的行和列,padx和 pady 参数用于设置按钮之间的间距。
4. 布局参数:row 和 column参数定义了按钮在网格布局中的位置。padx和pady参数定义了按钮在其单元格内的填充。
5. 主窗口和计算器实例的创建:创建一个 Tkinter 的主窗口 root。创建 Calculator类的实例calc,并将主窗口 root作为参数传递。
6. 事件循环:root.mainloop() 启动 Tkinter 的主事件循环。
不足:
self.button_actions字典和 self.buttons列表没有在代码片段中定义,应该在 Calculator 类的其他部分定义。self.calculate 方法的实现缺失,需要进一步的代码来完成计算器的功能。
经验:
可以利用字典映射来为每一个按钮控件绑定函数来实现功能,但方法需要先定义再使用。