注释的需要与代码的抽象级别成反比。
例如,对于大多数实际目的,汇编语言是不带注释的,难以理解。这是一个小程序的摘录,该程序计算并打印了斐波那契数列的各项:
main:
; initializes the two numbers and the counter. Note that this assumes
; that the counter and num1 and num2 areas are contiguous!
;
mov ax,'00' ; initialize to all ASCII zeroes
mov di,counter ; including the counter
mov cx,digits+cntDigits/2 ; two bytes at a time
cld ; initialize from low to high memory
rep stosw ; write the data
inc ax ; make sure ASCII zero is in al
mov [num1 + digits - 1],al ; last digit is one
mov [num2 + digits - 1],al ;
mov [counter + cntDigits - 1],al
jmp .bottom ; done with initialization, so begin
.top
; add num1 to num2
mov di,num1+digits-1
mov si,num2+digits-1
mov cx,digits ;
call AddNumbers ; num2 += num1
mov bp,num2 ;
call PrintLine ;
dec dword [term] ; decrement loop counter
jz .done ;
; add num2 to num1
mov di,num2+digits-1
mov si,num1+digits-1
mov cx,digits ;
call AddNumbers ; num1 += num2
.bottom
mov bp,num1 ;
call PrintLine ;
dec dword [term] ; decrement loop counter
jnz .top ;
.done
call CRLF ; finish off with CRLF
mov ax,4c00h ; terminate
int 21h ;
即使有评论,也很复杂。
现代示例:正则表达式通常是非常低的抽象结构(小写字母,数字0、1、2,换行等)。他们可能需要样本形式的评论(IIRC的鲍勃·马丁(Bob Martin)确实承认这一点)。这是一个正则表达式,(我认为)应与HTTP(S)和FTP URL匹配:
^(((ht|f)tp(s?))\://)?(www.|[a-zA-Z].)[a-zA-Z0-9\-\.]+\.(com|edu|gov|m
+il|net|org|biz|info|name|museum|us|ca|uk)(\:[0-9]+)*(/($|[a-zA-Z0-9\.
+\,\;\?\'\\\+&%\$#\=~_\-]+))*$
随着语言逐步发展到抽象层次结构,程序员能够使用令人回味的抽象(变量名,函数名,类名,模块名,接口,回调等)来提供内置文档。忽略利用此优势,并在其上使用注释在纸上是很懒惰的,这对维护者是不利的,也是不尊重的。
我想到的是在C数字食谱翻译逐字大多以数字食谱在C ++中,我推断开始为数字食谱(在FORTAN),所有的变量a
,aa
,b
,c
,cc
,等通过每个版本维护。该算法可能是正确的,但是它们没有利用所提供语言的抽象性。他们让我失望。Dobbs博士的文章样本-快速傅立叶变换:
void four1(double* data, unsigned long nn)
{
unsigned long n, mmax, m, j, istep, i;
double wtemp, wr, wpr, wpi, wi, theta;
double tempr, tempi;
// reverse-binary reindexing
n = nn<<1;
j=1;
for (i=1; i<n; i+=2) {
if (j>i) {
swap(data[j-1], data[i-1]);
swap(data[j], data[i]);
}
m = nn;
while (m>=2 && j>m) {
j -= m;
m >>= 1;
}
j += m;
};
// here begins the Danielson-Lanczos section
mmax=2;
while (n>mmax) {
istep = mmax<<1;
theta = -(2*M_PI/mmax);
wtemp = sin(0.5*theta);
wpr = -2.0*wtemp*wtemp;
wpi = sin(theta);
wr = 1.0;
wi = 0.0;
for (m=1; m < mmax; m += 2) {
for (i=m; i <= n; i += istep) {
j=i+mmax;
tempr = wr*data[j-1] - wi*data[j];
tempi = wr * data[j] + wi*data[j-1];
data[j-1] = data[i-1] - tempr;
data[j] = data[i] - tempi;
data[i-1] += tempr;
data[i] += tempi;
}
wtemp=wr;
wr += wr*wpr - wi*wpi;
wi += wi*wpr + wtemp*wpi;
}
mmax=istep;
}
}
作为抽象的特殊情况,每种语言都有用于某些常见任务的惯用语/规范代码片段(在C中删除动态链接列表),无论它们看起来如何,都不应记录在案。程序员应该学习这些习语,因为它们是语言的非正式部分。
因此,要解决的问题是:必须避免使用从低级构建块构建的非惯用代码进行注释。而且这比实际情况要少WAAAAY。