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


当前回答

# absolutely foul heuristic code.
# ..it's dirty, but you want it.

and:

# VERY USEFUL DEBUGGING AID, for when the above all goes pearshaped:

其他回答

/*
    FIXME:  why the fuck did anyone ever think this kind of expensive iteration
                    was a good idea?
// I don't know why I need this, but it stops the people being upside-down

x = -x;

以下注释来自我必须调试的一个旧项目:

//Haleluya i can go home!

我发现了这个:

I'm not sure what I did

最近在我们的代码中发现了这一点(我们开发企业软件):

// Instance of excel
Excel excel = this.CreateExcelInstance();
excel.Open(stream); // how to close it?!

在此之前,我确信我们已经摆脱了这些“有趣的东西”,我们正在以正确的、意识形态正确的方式做这件事……