gpt4 book ai didi

vbscript - 如何在 VBScript 中添加注释

转载 作者:行者123 更新时间:2023-12-05 00:47:28 25 4
gpt4 key购买 nike

我有一些 VBScripts 我想在代码中添加我的解释。

是否有一些添加评论的语法?

最佳答案

如何在 VBScript 中注释代码?

如有疑问,请查看 The Documentation

Taken from Rem Statement
As shown in the syntax section, you can use an apostrophe (') instead of the Rem keyword. If the Rem keyword follows other statements on a line, it must be separated from the statements by a colon. However, when you use an apostrophe, the colon is not required after other statements.

以下是使用这两种方法的示例

Rem This is a comment
'This is also a comment

Call SomeFunction(SomeValue) : Rem This is an inline comment
Call SomeFunction(SomeValue) 'This is also an inline comment

没有真正的理由使用 Rem 它是 just a throw back from BASIC .在我看来,撇号方法的效果和它的侵入性一样低,但这完全是用户的偏好。

屏蔽评论呢?

VBScript 不支持 block 注释。每行必须以 Rem 或撇号 ' 开头(多种变体在语法上没有区别)。


有用的链接

关于vbscript - 如何在 VBScript 中添加注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56924438/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com