你遇到过的源代码中最好的注释是什么?
当前回答
// sometimes I believe compiler ignores all my comments
其他回答
//Please comment on your source code
<cftry>
...code...
<cfcatch>
<!--- Gobble --->
</cfcatch>
<cftry>
我公司的代码库里到处都是。它是ColdFusion,它会忽略错误。
我曾经在一个项目中发现了这样的评论:
// Cabbage fart?
我不知道那是什么意思。还好我的魔方不在写它的人旁边。
一段时间前我在一个PHP CMS中添加的注释。
if (/*you*/ $_GET['action']) { //celebrate
下面的代码是在Python模拟教程中看到的。
# This is my rifle.
def rifle(type='hunting'):
print('This is my (%s) rifle.' % type)
# This is my gun.
def gun(type='hand'):
print('This is my (%s) gun.' % type)
# This is for fighting.
def fighting(type='illegal'):
print('This is for (%s) fighting.' % type)
# This is for fun.
def fun(type='gaming'):
print('This is for (%s) fun.' % type)
作者一定是《恶搞之家》的粉丝。^ _ ^