book是单词。最后会加0,这个0是字符串结束字符,以后处理的时候有用。
就是普通数据: 0
没有什么忒别含义
db ‘hello’,0
经过汇编编译后,生成数据:
68 65 6C 6C 6F 00
h e l l o 0
最后两个0就是代码db ‘hello’,0中0的编译结果
C语言中标准字符串的结尾
对...
PTR: 指定要操作的数据尺寸
; Test12_1.asm
.386
.model flat, stdcall
include windows.inc
include kernel32.inc
include masm32.inc
include debug.inc
includelib kernel32.lib...
1、认识jQuery extend()和jQuery.fn.extend()
jQuery的API手册中,extend方法挂载在jQuery和jQuery.fn两个不同对象上方法,但在jQuery内部代码实现的是相同的,只是功能却不太一样;
且看官方给出解释:
jQuery.extend(): Merge the contents of two or mo...