什么是&H14&在 VBScript 中?
我找到了以下文章:此处有关安装字体的信息通过脚本的 Windows 计算机。作者使用 VBScript 来做到这一点,但我想使用 Ruby/Python。脚本中有一行我不明白:
Const FONTS = &H14&
那是什么&H14&?是一个数字吗?我如何用另一种语言表示它?
I found the following article : here about installing fonts on a Windows computer via a script. The author uses VBScript to do that, but I'd like to use Ruby/Python. There is a line in the script I don't understand :
Const FONTS = &H14&
What is that &H14&? Is it a number? How would I represent that in another language?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
&H 前缀用于以十六进制书写数字。十六进制数 14 是十进制数 20
。后缀表示该数字是 Long 类型(32 位整数)。
所以,&H14&是 Long 类型的数值文字,值为 20。
The &H prefix is used to write a number in hexadecimal. The hexadecimal number 14 is the decimal number 20.
The & suffix means that the number is of the type Long (32 bit integer).
So, &H14& is a numeric literal of the type Long with the value 20.
它是一个十六进制数字。 &H14&在某些编程语言中可以写为 0x14。
该值用于表示特殊文件夹“Fonts”.. 更多信息
It's a number in hexadecimal. &H14& can be written in some programming languages as 0x14.
The value is used to represent the special folder "Fonts" .. more info