VBScript 函数名称最大长度

发布于 2024-11-07 16:59:36 字数 45 浏览 0 评论 0原文

我想知道经典 ASP (VBScript) 中函数名称允许的最大长度是多少。

I'm wondering what the maximum allowed length of a function name in Classic ASP (VBScript) is.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

挽清梦 2024-11-14 16:59:36

以下失败,标识符太长 @ 256 个字符

for i = 1 to 1024
    execute "function " & string (i, "X") & ": end function"
    WScript.echo i
next

The following fails with identifier too long @ 256 characters

for i = 1 to 1024
    execute "function " & string (i, "X") & ": end function"
    WScript.echo i
next
メ斷腸人バ 2024-11-14 16:59:36

我认为它是 255,但你不应该滥用它:)

来自 MSDN 参考 函数

姓名
职能名称;遵循标准变量命名约定。

并来自 变量 的 MSDN 参考:

[...]变量名称:

  • 必须以字母字符开头。
  • 不能包含嵌入句点。
  • 不得超过 255 个字符。
  • 在声明的范围内必须是唯一的。

I think it is 255, but you should not abuse it :)

From the MSDN reference for Function:

name
Name of the Function; follows standard variable naming conventions.

And from the MSDN reference for Variables:

[...] A variable name:

  • Must begin with an alphabetic character.
  • Cannot contain an embedded period.
  • Must not exceed 255 characters.
  • Must be unique in the scope in which it is declared.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文