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


当前回答

// Replaces with spaces the braces in cases where braces in places cause stasis 
   $str = str_replace(array("\{","\}")," ",$str);

其他回答

// sometimes I believe compiler ignores all my comments

在一组相当长且复杂的while循环和if块的末尾,开发人员插入了最后的注释:

else
{
    // wobbly wilson said this would *never* happen!!
}

机智和讽刺的简洁混合:)

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

// He's dead, Jim!

//说明:!!待办事项

在某些汇编程序中,在包含&h723的行末尾

' RIP LVB

(明白吗?)