VB.NET 中对象声明中的 (As) 和 (=) 有什么区别
我可以像这样创建一个新对象:
Dim sqlconn As New SqlClient.SqlConnection(cs)
或这样:
Dim sqlconn = New SqlClient.SqlConnection(cs)
有什么区别?因为两者都对我来说效果很好!
I can create a new object like this:
Dim sqlconn As New SqlClient.SqlConnection(cs)
or like this:
Dim sqlconn = New SqlClient.SqlConnection(cs)
What's the difference? Since both worked fine for me!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一个是以下形式的缩写:
第二个取决于您使用的 VB 版本。在 VB 7 和 VB 8 中,它是相同的:
在 VB 9 中引入了类型推断,因此编译器将从赋值中推断类型并生成与第一个代码相同的代码。
类型推断需要将选项
Option Infer
设置为on
。这是默认设置,但如果您从旧版本迁移项目,它可能会关闭。The first one is the short form of:
The second one depends on what version of VB you are using. In VB 7 and VB 8 it is the same as:
In VB 9 type inference was introduced, so the compiler will infer the type from the assignment and produce the same code as the first one.
The type inference requires that the option
Option Infer
is set toon
. This is the default setting, but it might be off if you migrate a project from an older version.