本文最后更新于 320 天前,其中的信息可能已经过时,如有错误请发送邮件到wuxianglongblog@163.com
简介
属性 attributes
属性是与对象绑定的一组数据,可以只读,只写,或者读写,使用时不加括号,例如:
f = file("new_file", 'w')
显示模式属性:
f.mode
'w'
是否关闭:
f.closed
False
mode
是只读属性,所以这样会报错:
f.mode = 'r'
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
in ()
----> 1 f.mode = 'r'
TypeError: readonly attribute
获取属性不需要加括号:
f.mode()
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
in ()
----> 1 f.mode()
TypeError: 'str' object is not callable
方法 method
方法是与属性绑定的一组函数,需要使用括号,作用于对象本身:
f.write('Hi.\n')
f.seek(0)
f.write('Hola!\n')
f.close()
!rm new_file
使用 OPP 的原因
- 构建自己的类型来模拟真实世界的对象
- 处理抽象对象
- 容易复用和扩展
- 理解其他 OPP 代码
- GUI 通常使用 OPP 规则编写
- ...