MASM32 中这种声明的语法是什么?
szCaption db 'System Information', 0
我现在理解这样的声明:
var_name type default_value
它有 3 个部分。但是上面声明的语法是什么?
szCaption db 'System Information', 0
I now understand such declarations:
var_name type default_value
Which has 3 parts. But what's the syntax for the declarations above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,更好的描述是:
在您的示例中,字符串中的每个字符都是一个字节。尾随零也是如此。 MASM 允许字符或数字。
您的示例形成一个以 null 结尾的字符串。
Actually, a better description is:
In your example, each character in the string is a byte. And so is the trailing zero. MASM allows either characters or numbers.
Your example forms a null-terminated string.
db 实际上代表“定义字节”,并且可以接受带引号的字符串(单引号或双引号)和数字作为参数,以逗号分隔。
db actually stands for 'define bytes' and can accept as arguments quoted strings (single or double quotes) and numbers, separated by commas.