python 类中的__nozero__ ,__len__ 重写,可以定义对象的布尔值是True or False
Posted 走自己的路-让别人也有路走
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 类中的__nozero__ ,__len__ 重写,可以定义对象的布尔值是True or False相关的知识,希望对你有一定的参考价值。
Python中,每个对象都具有True和False,空对象、值为零的任何数字或者NULL对象None的布尔值都是False。
如
整型 0
长整型 0L
浮点数 0.0
空列表 []
空元组()
空字典()
空字符串 ""
None
复数0.0+0.0j
对于一个自定义的类,可以通过重写__nozero__(), __len__()函数来说明一个类对象是否为False。 如果__nozero__()或者__len__() 返回值为零,则对象为False, 否则为True。
例1:
class test_nozero(object):
def __init__(self):
print "test_nozero init"
def __nozero__(self):
return 1
#def __len__(self):
# return 0
if __name__ == '__main__':
a=test_nozero()
#print a
if a :
print "not zero"
else:
print "zero"
执行结果如下:
test_nozero init
not zero
例二:
class test_nozero(object):
def __init__(self):
print "test_nozero init"
def __nozero__(self):
return 0
#def __len__(self):
# return 0
if __name__ == '__main__':
a=test_nozero()
#print a
if a :
print "not zero"
else:
print "zero"
执行结果如下:
test_nozero init
zero
以上是关于python 类中的__nozero__ ,__len__ 重写,可以定义对象的布尔值是True or False的主要内容,如果未能解决你的问题,请参考以下文章