您的位置:首页 > 编程语言 > Python开发

python 中exception,class学习

2014-11-07 18:34 309 查看
python 中exception,class 学习

instroduction:

Object2 = Object1 ( like java)

if Object1 is class object , then copy by reference;

if Object1 is basic type, then copy by value

1. exception

主要结构:

try:

exception ValueError:

exception ZeroDivisionError:

exception NameError:

exception TypeError:

exception:

finally:

2. custom exception

class Error(Exception):
pass

def MyError(Error):
def __init__(self,value):
print value
self.value = value
def __str__(self):
return repr(self.value)

3. class

class Bird:
number = 0
def __init__(self,name):
self.name = name
print 'Initializing %s' % self.name
def __del__(self):
print 'del',self.number
def fly(self):
print 'fly %d' % self.number
def add(self):
self.number = self.number + 1
def sub(self):
self.number = self.number - 1
class Sparrow(Bird):
def __init__(self,name,alias):
Bird.__init__(self,name)
self.alias = alias
print 'alias is %s ' % self.alias
def fly(self):
print 'Sparrow fly %s' % self.alias

description:

constructor: __init__

destructor:__del__

static data: number

4. file input/output

cPickle or pickle: store the object consistently
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: