什么是&H14&在 VBScript 中?

发布于 2024-08-04 10:03:23 字数 308 浏览 3 评论 0原文

我找到了以下文章:此处有关安装字体的信息通过脚本的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼眸里的快感 2024-08-11 10:03:23

&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.

梦言归人 2024-08-11 10:03:23

它是一个十六进制数字。 &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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文