如何在VB函数中添加可选参数/默认值参数?
如何在 Visual Basic 中创建一个包含可选参数的方法?
How can I create a method that has optional parameters in it in Visual Basic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 Visual Basic 中创建一个包含可选参数的方法?
How can I create a method that has optional parameters in it in Visual Basic?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
使用
Optional
关键字并提供默认值。 可选参数必须是最后定义的参数,以避免创建不明确的函数签名。像这样称呼它:
或者像这样:
Use the
Optional
keyword and supply a default value. Optional parameters must be the last parameters defined, to avoid creating ambiguous function signatures.Call it like this:
Or like this:
请记住,可选参数不能位于必需参数之前。
此代码将显示错误:
这是常见错误,调试器没有太多解释...
这是有道理的,想象一下这个电话......
Have in mind that optional argument cannot have place before a required argument.
This code will show error:
It is common error, no much explained by debugger...
It have sense, imagine the call...