买了本 python 基础教程 ,其中有这么句话:
在面向对象程序设计中,术语对象( object )基本上可以看作数据(特性)以及由一系列可以存取、操作这些数据的方法所组成的集合。
(出自: python 基础教程 112 页)
查了下原著:
In object-oriented programming, the term object loosely means a collection of data (attributes) with a set of methods for accessing and manipulating those data.
这里的 attributes 是指属性吧?
