30 多个有内味道且笑死的人代码注释

   日期:2020-08-27     浏览:93    评论:0    
核心提示:作者:xor译者:前端小智来源:medium点赞再看,微信搜索 【大迁世界】 关注这个没有大厂背景,但有着一股向上积极心态人。本文 GitHub https://github.com/qq449245884/xiaozhi 上已经收录,文章的已分类,也整理了很多我的文档,和教程资料。代码注释,有些人说它太丑,也有些人说它是标准和良好的做法。在本文中, 列出了一些在编程中遇到的有趣的代码注释。注释 1// Weed Effect ! 这是杂草效应的意思?不是很懂,有谁知道,可以留言一下.

作者:xor
译者:前端小智
来源:medium

点赞再看,微信搜索 【大迁世界】 关注这个没有大厂背景,但有着一股向上积极心态人。本文 GitHub https://github.com/qq449245884/xiaozhi 上已经收录,文章的已分类,也整理了很多我的文档,和教程资料。

代码注释,有些人说它太丑,也有些人说它是标准和良好的做法。在本文中, 列出了一些在编程中遇到的有趣的代码注释。

注释 1

// Weed Effect ! 

这是杂草效应的意思?不是很懂,有谁知道,可以留言一下。

注释 2


//The following code was written by <developer name>.
// Unless it doesn't work, then I have no idea who wrote it.


// 以下代码是由<developer name>编写的。
// 除非它不起作用,否则我不知道是谁写的。

注释 3


// Ad Index scheming and plotting - Those with
//	heart conditions are advised to not continue


// 广告索引的设计和绘图模块
// 建议不要深入阅读,否则容得得心脏病

注释 4


// nobody read comments!


// 没人会读的注释

注释 5


i++; // increment i


i++; // 自增 i

注释 6


// Magic. Do not touch.



// 这里已经结界,不要碰.

注释 7


// sometimes I believe compiler ignores all my comments


// 有时我相信编译器会忽略我的所有注释

注释 8


// I am not responsible of this code.
// They made me write it, against my will.


// 我对此代码不承担任何责任。
// 是他们强迫我让我写的,这已违背了我的意愿。

注释 9


// 
// Dear maintainer:
// 
// Once you are done trying to 'optimize' this routine,
// and have realized what a terrible mistake that was,
// please increment the following counter as a warning
// to the next guy:
// 
// total_hours_wasted_here = 42


// 亲爱的程序媛
// 
// 一旦你尝试“优化”此代码,并意识到这是一个可怕的错误,
// 请增加以下计数器,以警告下一个人
//  total_hours_wasted_here = 42

注释 10



# To understand recursion, see the bottom of this file
At the bottom of the file
# To understand recursion, see the top of this file




# 要了解递归,请参见此文件的底部

在文件的底部

# 要了解递归,请参见此文件的顶部

注释 11



// I will give you two of my seventy-two virgins if you can fix this.


// 如果你能解决这个问题,我就把我七十二个处女中的两个给你。

注释 12


//Dear future me. Please forgive me. 
//I can't even begin to express how sorry I am.



// 你好,未来帅气的我,请原谅我。
// 我现在无法表达我的歉意,因为我写下了这段代码。

注释 13


//private instance variable for storing age
public static int age;


// 用于存储年龄的私有实例变量
public static int age;

注释 14


const int TEN=10; // s if the value of 10 will fluctuate...



const int TEN=10; // 10 是会改变的值

注释 15











注释 16







注释 17


//When I wrote this, only God and I understood what I was doing
//Now, God only knows




// 当我写这段代码,只有上帝和我知道这是在做什么
...

// 现在,只有上帝知道这段代码在做什么

注释 18



// drunk, fix later



// 喝醉了,待会解决

注释 19



// I'm sorry.



// 我很抱歉

注释 20



// I am not responsible of this code.



// 我对此代码不承担任何责任。

注释 21


// I have to find a better job



// 我必须找到更好的工作

注释 22



// Joe is sorry
A few hundred lines later...
// Harry is sorry too



// 老五抱歉了

写了几百行代码之后...

// 小五对不住了

注释 23


# Christmas tree initializer  
    toConnect = []  
    toRead =   [  ]  
    toWrite = [    ]   
    primes = [      ]  
    responses = {}  
    remaining = {}
    
    


# 圣诞树初始化器
    toConnect = []  
    toRead =   [  ]  
    toWrite = [    ]   
    primes = [      ]  
    responses = {}  
    remaining = {} 

注释 24



Catch (Exception e) {
 // who cares?
}



Catch (Exception e) {
 // 管它呢?
}

注释 25



// IE7 update. this is still bad code, but IE8 is probably a long way off :)



IE7更新,这仍然是错误的代码,看来 IE8 还有很长的路要走:)

注释 26



// If this code works, it was written by Paul DiLascia. If not, I don't know



// 如果这个代码有效的话,它就是由 前端小智 编写的。如果出错了,我也不知道是谁写的。

注释 27



// This comment is self explanatory.



// 这个注释不言自明。

注释 28



int main(void)




int main(void)

注释 29



// I am not sure if we need this, but too scared to delete.



// 我不确定我们是否需要这个,但又害怕删除

注释 30



public boolean isAvailable() {
    return false;
}




public boolean isAvailable() {
    return false;
}

注释 31



// Autogenerated, do not edit. All changes will be undone.



// 自动生成,不要编辑。所有的更改都将被撤销。

注释 32



// hack for ie browser (assuming that ie is a browser)



// 破解ie浏览器(假设ie是一个浏览器)

注释 33



/// this is a well commented line



/// 这是一个很好的注释

注释 34



// Mr. Compiler, please do not read this.



// 编译先生,请不要读取这个

注释 35



// All bugs added by David S. Miller



// 所有 bug 都是由 老王 添加的

注释 36



//If you're reading this, then my program is probably a success




// 如果你现在在认真详细的阅读这段代码,那么写的这段代码应该是没有问题的。

注释 37



Catch (Exception e) {
    //eat it
}



Catch (Exception e) {
    // 吃掉它
}

注释 38



//todo: never to be implemented



// todo:永远不会执行

注释 39



// simply copied from another code



// 别问,问我也是从另一个代码拷贝过来的

注释 40



//Please comment on your source code



// 拜托啦,请把你写的代码注释一下

注释 41


# as you can see: I comment the code!




# 如你所见:我注释了代码!

注释 42



// if i ever see this again i'm going to start bringing guns to work



// 如果我再看到这个,我会带枪去工作

注释 43

def format_ticket_content(text, recursive = true)
  if text.is_a?(TicketNote)
    note = text
    text = note.content
  else
    note = nil
  end

  ## Safety pig has arrived!
  text = h(text)
  ##                               _
  ##  _._ _..._ .-',     _.._(`))
  ## '-. `     '  /-._.-'    ',/
  ##    )         \            '.
  ##   / _    _    |             \
  ##  |  a    a    /              |
  ##  \   .-.                     ;  
  ##   '-('' ).-'       ,'       ;
  ##      '-;           |      .'
  ##         \           \    /
  ##         | 7  .__  _.-\   \
  ##         | |  |  ``/  /`  /
  ##        /,_|  |   /,_/   /
  ##           /,_/      '`-'
  ##

注释 44



long long ago; 




long long ago; 

注释 45


try {

} finally { // should never happen 

}


try {

} finally { // 这里永远不会被执行

}

注释 46








// 啊啊啊!你永远都不会明白为什么这个方法有效。

注释 47


// this formula is right, work out the math yourself if you don't believe me



// 这个公式是正确的,如果你不相信我,自己动手算一下

注释 48



// This was clearly written under duress



// 这显然是在胁迫下写的

注释 49

 
                                   .='  ' .`/,/!(=)Zm.           
                     .._,,._..  ,-`- `,\ ` -` -`\\7//WW.         
                ,v=~/.-,-\- -!|V-s.)iT-|s|\-.'   `///mK%.        
              v!`i!-.e]-g`bT/i(/[=.Z/m)K(YNYi..   /-]i44M.       
            v`/,`|v]-DvLcfZ/eV/iDLN\D/ZK@%8W[Z..   `/d!Z8m       
           //,c\(2(X/NYNY8]ZZ/bZd\()/\7WY%WKKW)   -'|(][%4.      
         ,\\i\c(e)WX@WKKZKDKWMZ8(b5/ZK8]Z7%ffVM,   -.Y!bNMi      
         /-iit5N)KWG%%8%%%%W8%ZWM(8YZvD)XN(@.  [   \]!/GXW[      
        / ))G8\NMN%W%%%%%%%%%%8KK@WZKYK*ZG5KMi,-   vi[NZGM[      
       i\!(44Y8K%8%%%**~YZYZ@%%%%%4KWZ/PKN)ZDZ7   c=//WZK%!      
      ,\v\YtMZW8W%%f`,`.t/bNZZK%%W%%ZXb*K(K5DZ   -c\\/KM48       
      -|c5PbM4DDW%f  v./c\[tMY8W%PMW%D@KW)Gbf   -/(=ZZKM8[       
      2(N8YXWK85@K   -'c|K4/KKK%@  V%@@WD8e~  .//ct)8ZK%8`       
      =)b%]Nd)@KM[  !'\cG!iWYK%%|   !M@KZf    -c\))ZDKW%`        
      YYKWZGNM4/Pb  '-VscP4]b@W%     'Mf`   -L\///KM(%W!         
      !KKW4ZK/W7)Z. '/cttbY)DKW%     -`  .',\v)K(5KW%%f          
      'W)KWKZZg)Z2/,!/L(-DYYb54%  ,,`, -\-/v(((KK5WW%f           
       \M4NDDKZZ(e!/\7vNTtZd)8\Mi!\-,-/i-v((tKNGN%W%%            
       'M8M88(Zd))///((|D\tDY\\KK-`/-i(=)KtNNN@W%%%@%[           
        !8%@KW5KKN4///s(\Pd!ROBY8/=2(/4ZdzKD%K%%%M8@%%           
         '%%%W%dGNtPK(c\/2\[Z(ttNYZ2NZW8W8K%%%%YKM%M%%.          
           *%%W%GW5@/%!e]_tZdY()v)ZXMZW%W%%%*5Y]K%ZK%8[          
            '*%%%%8%8WK\)[/ZmZ/Zi]!/M%%%%@f\ \Y/NNMK%%!          
              'VM%%%%W%WN5Z/Gt5/b)((cV@f`  - |cZbMKW%%|          
                 'V*M%%%WZ/ZG\t5((+)L\'-,,/  -)X(NWW%%           
                      `~`MZ/DZGNZG5(((\,    ,t\\Z)KW%@           
                         'M8K%8GN8\5(5///]i!v\K)85W%%f           
                           YWWKKKKWZ8G54X/GGMeK@WM8%@            
                            !M8%8%48WG@KWYbW%WWW%%%@             
                              VM%WKWK%8K%%8WWWW%%%@`             
                                ~*%%%%%%W%%%%%%%@~               
                                   ~*MM%%%%%%@f`                 
                                       '''''

注释 50


注释 51


// This was clearly written under duress


// 如果将来我读到这篇文章,我会回到过去并自杀。

注释 52


// This was clearly written under duress


// 乱七八糟的 SQL语句,但它有效,所以请不要触摸它

注释 53

//        .==.        .==.          
//       //`^\\      //^`\\         
//      // ^ ^\(\__/)/^ ^^\\        
//     //^ ^^ ^/6  6\ ^^ ^ \\       
//    //^ ^^ ^/( .. )\^ ^ ^ \\      
//   // ^^ ^/\| v""v |/\^ ^ ^\\     
//  // ^^/\/ /  `~~`  \ \/\^ ^\\    
//  -----------------------------
/// 这是条龙

注释54


// I from the future read this I'll back in time and kill myself.


// 这是垃圾代码,但现在是凌晨3点,我需要把它修好。

注释55

// 我不确定我做了什么

注释56

如果你想被解雇,请将其删除

注释 57

// 切勿动以下代码,否则我会踢你的 PP

编辑中可能存在的bug没法实时知道,事后为了解决这些bug,花了大量的时间进行log 调试,这边顺便给大家推荐一个好用的BUG监控工具 Fundebug。

原文:https://medium.com/javascript-in-plain-english/30-funny-code-comments-that-will-make-you-laugh-1c1b54d4ab00

文章每周持续更新,可以微信搜索 【大迁世界 】 第一时间阅读,回复 【福利】 有多份前端视频等着你,本文 GitHub https://github.com/qq449245884/xiaozhi 已经收录,欢迎Star。

 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服