一.初始化: 1.__new__方法,初始化过程中第一个用到的方法(用处不大). 2.之后,__init__方法,构造方法. 3.最后,在对象回收时,调用__del__方法.如果解释器退出时,对象还存在,则不能保证__del__能够执行. 二.比较 __cmp__(self, other) 定义了比较的行为. __eq__(self, other) 定义了等号的行为, == . __ne__(self, other) 定义了不等号的行为, != . __lt__(self, other) 定义了…