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


当前回答

TextBox1.Text = TextBox1.Text; //Point less yes, who writes this crap?

其他回答

摘自UNIX版本6源代码,大约1975年:

/* You are not expected to understand this. */
Case 1:
   ...
   break;
   ...
//I don't want do do this but [my coworker] says it's part of the code standard
default:
   break;
If you have reached this part in the code, then this program sucks.
//I am not sure why this works but it fixes the problem. 

这是之前的一组代码,技术上确实解决了问题,它的意思是,但打破了其他3个东西....