|
相信每一个编程极客都知道什么是注释,也都知道如何在代码中添加注释,今天这篇文章中,我们将不会讨论如何添加注释,或者如何添加一个完美的注释,在今天的文章里,我们将给大家奉献一场来自全球开发人员的注释盛宴,看看大家是怎么在代码中添加自己富有想象力的注释吧,绝对会让你乐此不彼!
当然,如果你也有很多超有趣的注释,请留言和我们分享!我们的口号是:“快乐编程,娱乐注释” !!!
注重语法的注释
来自绝对菜鸟的注释
- // I am not sure if we need this, but too scared to delete.
- ...
- ...
中文:个人不确认是不是需要,但是实在不敢删除
来自正直程序员的注释
- // I am not responsible of this code.
- // They made me write it, against my will.
中文:个人不负责这块的质量,因为他们逼迫我违心的写了这段代码
来自电影的注释
- options.BatchSize = 300; //Madness? THIS IS SPARTA!
中文:疯了吧?这是斯巴达!
绝对尽责的注释
中文:给变量i增加一个记数
绝对会被忽略的注释
- Catch (Exception e) {
- //who cares?
- }
中文:谁在意?
绝对不能信任注释
- /**
- * Always returns true.
- */
- public boolean isAvailable() {
- return false;
- }
中文:返回为true (编辑:永远不能相信注释)
典型的遗留系统代码里的注释
- /*
- * You may think you know what the following code does.
- * But you dont. Trust me.
- * Fiddle with it, and youll spend many a sleepless
- * night cursing the moment you thought youd be clever
- * enough to "optimize" the code below.
- * Now close this file and go play with something else.
- */
中文:你可能相信你能看懂以下代码,但是其实绝对不可能,相信我。一旦你调试了,你绝对会后悔装聪明去尝试优化这段代码。最好的方式是关闭文件,去玩点儿你喜欢的东西吧。
Java程序里经常能看到的“典型”注释
- try {
-
- } finally { // should never happen
-
- }
中文:绝对不会运行到这里
超级有自知之明的代码注释
- //This code sucks, you know it and I know it.
- //Move on and call me an idiot later.
中文:这段代码的确很挫,我知道你也知道,先不要骂我2B了,请先继续往下看
绝对有年头的注释
- long long ago; /* in a galaxy far far away */
中文:在很远很远的银河系外 (编辑:这段代码能运行,绝对是个奇迹)
"情色"代码让我如何注释为好
- double penetration; // ouch
中文:我擦!(编辑:如果你不熟悉英文,double penetration 绝对无法理解,但是如果你熟悉AV,了解情色,应该知道什么体位是“双管齐下”吧! 嘿嘿,有点儿淘气了,请大家不要见怪)
绝对无法挑剔的注释
- /////////////////////////////////////// this is a well commented line
中文:这注释绝对完全没有问题
保证正确体位的注释
- // I don't know why I need this, but it stops the people being upside-down
- x = -x;
中文:我也不知道为什么需要这个,但是这个能保持大家不会倒立
来自Java1.2 SwingUtilities的注释
- doRun.run(); // ... "a doo run run".
最好的帮助你了解递归的注释
- # To understand recursion, see the bottom of this file
-
- At the bottom of the file:
-
- # To understand recursion, see the top of this file
中文:#如果想了解递归,请看最下面的注释...如果想了解递归,请看最上面的注释
绝对督促你工作的注释
绝对菜鸟注释
- //I am not sure why this works but it fixes the problem.
中文:不知道为什么,但是的确解决了这个问题。
|
|