你遇到过的源代码中最好的注释是什么?
当前回答
我看到一些旧的fortran代码:
integer *4 one,two,three;
c asssign one to 100 before entering the loop
one=100;
其他回答
//I am not sure why this works but it fixes the problem.
这是之前的一组代码,技术上确实解决了问题,它的意思是,但打破了其他3个东西....
我没有这个来源的副本,但我一直记得它:
//如果你想不明白,就不要读这篇文章
我最喜欢的评论是我的一个同性恋朋友说的。他喜欢用VB标记他所有的TODO注释。净,
'TODO: Matt Damon
有时会提供额外的信息,但通常不是这样。
在eMule, Preferences.cpp中,强制最小上传速度限制与下载速度限制成正比的方法:
uint16 CPreferences::GetMaxDownload(){
//dont be a Lam3r :)
uint16 maxup=(GetMaxUpload()==UNLIMITED)?GetMaxGraphUploadRate():GetMaxUpload();
if( maxup < 4 )
return (( (maxup < 10) && (maxup*3 < prefs->maxdownload) )? maxup*3 : prefs->maxdownload);
return (( (maxup < 10) && (maxup*4 < prefs->maxdownload) )? maxup*4 : prefs->maxdownload);
}
// insert comment here