如此跳转的标号是什么意思?
StrToInt proc uses esi lpszStr
xor esi,esi
xor eax,eax
@@:
mov ecx,lpszStr
movzx ecx,Byte ptr [ecx+esi]
test cl,cl
jz @f
.if ((cl >= '0') && (cl <= '9'))
sub cl,'0'
lea eax,[eax+eax*4]
lea eax,[ecx+eax*2]
inc esi
jmp @b
.else
xor eax,eax
ret
.endif
@@:
ret
StrToInt endp
---------------------------
大家注意到没有,里面的跳转的标号: @@:,@b,@f <<<<<-------是什么意思啊?