- 1、空语句 do nothing
- 2、保证格式完整
- 3、保证语义完整
- 4、以if语句为例:
C/C++中写法:
if(true)
; // do nothing
else
{} // do nothing
python 中写法:
if true:
pass # do nothing
else:
print "do something."
测试程序:定义一个空函数
>>> def nullfunc():
... pass
...
>>> nullfunc()
>>>
C/C++中写法:
if(true)
; // do nothing
else
{} // do nothing
python 中写法:
if true:
pass # do nothing
else:
print "do something."
测试程序:定义一个空函数
>>> def nullfunc():
... pass
...
>>> nullfunc()
>>>