VB.NET 中对象声明中的 (As) 和 (=) 有什么区别

发布于 2024-11-11 04:28:30 字数 208 浏览 3 评论 0原文

我可以像这样创建一个新对象:

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 技术交流群。

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

发布评论

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

评论(1

红玫瑰 2024-11-18 04:28:30

第一个是以下形式的缩写:

Dim sqlconn As SqlClient.SqlConnection = New SqlClient.SqlConnection(cs)

第二个取决于您使用的 VB 版本。在 VB 7 和 VB 8 中,它是相同的:

Dim sqlconn As Object = New SqlClient.SqlConnection(cs)

在 VB 9 中引入了类型推断,因此编译器将从赋值中推断类型并生成与第一个代码相同的代码。

类型推断需要将选项 Option Infer 设置为 on。这是默认设置,但如果您从旧版本迁移项目,它可能会关闭。

The first one is the short form of:

Dim sqlconn As SqlClient.SqlConnection = New SqlClient.SqlConnection(cs)

The second one depends on what version of VB you are using. In VB 7 and VB 8 it is the same as:

Dim sqlconn As Object = New SqlClient.SqlConnection(cs)

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 to on. This is the default setting, but it might be off if you migrate a project from an older version.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文