我进行了搜索,但是找不到我想要的东西,如果已经提出这个问题,请随时与我联系。
本月早些时候发表了这篇文章:
http://net.tutsplus.com/tutorials/php/why-youre-a-bad-php-programmer/
概括地说,如果您不编写注释,那么您就是一个糟糕的程序员。我个人的观点是,代码应具有描述性,并且除非注释不能自我描述,否则大多数情况下不需要注释。
在给出的例子中
// Get the extension off the image filename
$pieces = explode('.', $image_name);
$extension = array_pop($pieces);
作者说此代码应该给出注释,我个人认为该代码应该是描述性的函数调用:
$extension = GetFileExtension($image_filename);
但是,在评论中实际上有人提出了这样的建议:
http://net.tutsplus.com/tutorials/php/why-youre-a-bad-php-programmer/comment-page-2/#comment-357130
作者回应说评论者是“其中的一个人”,即一个不好的程序员。
其他人对自我描述代码与评论代码有何看法?