用python进行OO编程时, 经常会用到类的构造函数来初始化一些变量。
class FileData: def __init__(self, data, name, type): self.bits = base64.encodestring(data) self.name = name self.type = type
其中self类似c++或者c#的this指针。