你遇到过的源代码中最好的注释是什么?
当前回答
catch (Exception ex)
{
// just die already.
}
其他回答
下面是一个必须声明的局部变量,只是为了将一个常量传递给库函数:
// This only exists because Scott doesn't know how to use const correctly
写得很好的Lisp是最容易阅读的语言之一,我喜欢它。但是写得不好的Lisp可能是比糟糕的Java更糟糕的噩梦,等等。
在这里,我们需要创建一个“组文件”,如果一个原始文件有3个变体,后缀为a, b和c。我一直试图追踪一个奇怪的错误,我们得到了不必要的组文件……
(let ((varianta (format nil "~aa" problem))
(variantb (format nil "~ab" problem))
(variantc (format nil "~ac" problem)))
;;if the A and B variants exist, create a group file
;;(why not just check for a? I don't know, this just feels right)
(when (and (probe-file varianta)
(probe-file variantb))
...)))
Bug: 1, Gut: 0。
显然,写这篇文章的人没有想到,也许检查所有三种变体是一个好主意。当然,这是我在最初编写这段代码十年之后(它比第一个SVN日志更早)最终追踪到的错误。
catch (Domain.ConcurrencyException)
{
// somebody changed it between the time we loaded it and now.
// weird, huh?
}
// TODO - Comment this function
当我在一些网站上工作时,我在嵌入式JS的开始发现了这一点:
我觉得这么做很肮脏,但那家伙想在。net中实现它