你遇到过的源代码中最好的注释是什么?
当前回答
在初始化链表时:
last = first; /* Biblical reference */
简洁而滑稽。
其他回答
'this next if statement - just how it is. don't try to understand it because you won't. :)
这就是工作保障。
在一个巨大的800行'switch'语句中,在中间的某处:
// Joe is sorry
几百行之后……
// Harry is sorry too
//把这个放在这里的人是个白痴…这根本不管用!
但是代码还在那里……
catch (Ex as Exception)
{
// oh crap, we should do something.
}
没有什么比一个空的catch块更能让人觉得代码是健壮的....
try {
dataSource.close();
}
catch (SQLException ex) {
// Do nothing, since we're going to trash this anyway
}
当然,这类事情实际上是JDBC(或者至少是Oracle的JDBC驱动程序)中的wtf,因为它可以在关闭连接时抛出SQLExceptions…