Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是在一些旧代码中找到了这个,我不确定它是什么意思。
Dim sTemp As String * 1
最后的 * 1 是什么?
谢谢!
这意味着该变量是一个长度正好为一个字符的字符串。
本质上,一个固定长度的字符串。
它是一个字符的固定长度字符串。这很方便,因为您可以定义固定字符串的结构并将文件直接读入结构中。
它创建一个固定长度的字符串。在该示例中,变量将只包含一个字符。