你遇到过的源代码中最好的注释是什么?


当前回答

BerkeleyDB

/*
 * Chaos reigns within.
 * Reflect, repent, and reboot.
 * Order shall return.
 */
return (DB_RUNRECOVERY);

其他回答

//todo: never to be implemented

在LucasArts的电脑游戏《the Eidolon》(游戏邦注:这款游戏本身就很古怪)的源代码中可以看到……

// He's dead, Jim!

从一个遗留的Perl CGI脚本:

# This is convoluted and evil, sorry.

不是注释,而是属性

[ThereBeDragons]

还有一个是我在IHttpHandler的实现中看到的

//What is this?
public bool IsReusable
{
    get{return false;}
}

//把这个放在这里的人是个白痴…这根本不管用!

但是代码还在那里……