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


当前回答

/*
    FIXME:  why the fuck did anyone ever think this kind of expensive iteration
                    was a good idea?

其他回答

// this is really complicated

没有其他评论了

在初始化链表时:

last = first; /* Biblical reference */

简洁而滑稽。

catch (Ex as Exception)
{
     // oh crap, we should do something.
}

没有什么比一个空的catch块更能让人觉得代码是健壮的....

消毒:

//Forward declarations:

class X {}; // TODO: Remove {}  ! When we get X defined....
If you have reached this part in the code, then this program sucks.