day48 练习:开发自动咖啡(上)
学习日期:20241025
学习目标:类 -- 62 小试牛刀:如何开发自动咖啡机?(上)
学习笔记:
案例解析
定义类
定义属性和方法
class Coffee():def __init__(self,water=-1,water_temp='cold',milk=-1,milk_temp='cold',coffee=1):self.water=waterself.water_temp=water_tempself.milk=milkself.milk_temp=milk_tempself.coffee=coffeeself.prescription =[]def showPrescription(self):for i in self.prescription:print(i)americano_ice=Coffee(water=150,water_temp='cold',coffee=1)americano_ice.showPrescription()
总结
- 定义类的属性和方法,是完善面向对象编程的主要方法
- 实例的行为即方法,需要在编程过程中不断调整
- 程序迭代的过程需要不断调整继承关系,抽象对象的类