《深入 Python :Dive Into Python
中文版》5.7.高级专用类方法除了__getitem__和__setitem__之外Python还有更多的专用函数。某些可以让你模拟出你甚至可能不知道的功能。下面的例子将展示UserDict一些其他专用方法。例5.16.UserDict中更多...
分类:
编程语言 时间:
2014-05-09 13:34:35
阅读次数:
357
class testsetandget: kk = {}; def __getitem__(self,
key): return self.kk[key]; def __setitem__(self, key, value): self.kk[key] =
value;a = testset...
分类:
编程语言 时间:
2014-05-01 20:16:13
阅读次数:
449