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


当前回答

在js代码中:

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

其他回答

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

Case 1:
   ...
   break;
   ...
//I don't want do do this but [my coworker] says it's part of the code standard
default:
   break;
//  Hey, your shoe's untied!

后面跟着一些可疑的代码,在这些代码中,

//  Keep looking!  I think it was the other shoe!

最后,

//  How strange -- I must be seeing things.  Anyhow, I'm going to go take a shower, now...
using namespace std;            // So sue me
// drunk, fix later

真希望我是在开玩笑。根据编写代码的开发人员的了解,我认为他是认真的。