我不确定 Option 显式 意味着什么?
可能的重复:
什么是严格和显式选项?
与区分大小写有关吗?这里完全是菜鸟。
Possible Duplicate:
what’s an option strict and explicit?
Is it about case sensitivity? Complete noob here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 MSDN:
否则,您可以直接使用变量而无需先声明它。
他们甚至还举了一个例子:
According to MSDN:
Otherwise, you can just use a variable without having to declare it first.
They even included an example:
当选项显式关闭时,Visual Basic 允许您通过为其赋值来隐式声明变量。这是一个非常糟糕的主意,因为拼写错误的变量名称会默默地创建一个新变量,从而导致很难发现错误。
When option explicit is off visual basic allows you to implicitly declare a variable by assigning a value to it. This is a really bad idea as misspelling a variable name would silently create a new variable causing a very hard to find bug.