为什么不能使用 var 声明字段

发布于 2024-11-18 05:26:39 字数 471 浏览 2 评论 0原文

可能的重复:
为什么类字段不能是 var?

我想避免输入复杂的内容/long 字段的类型定义,就像局部变量一样。

我想知道为什么这不能完成?

public class Foo
{
    public var barField = new Dictionary<string, int>(); // Does not work

    public void Method()
    {
        var barLocal = new Dictionary<string, int>(); // Works
    }
}

Possible Duplicate:
Why class fields cannot be var?

I'd like to avoid typing out complex/long type definitions for fields like you can with local variables.

I'd like to know why this couldn't be done?

public class Foo
{
    public var barField = new Dictionary<string, int>(); // Does not work

    public void Method()
    {
        var barLocal = new Dictionary<string, int>(); // Works
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

江心雾 2024-11-25 05:26:40

Straight from the source:

Why no var on fields?

北笙凉宸 2024-11-25 05:26:40

You can't have global vars. Please check the remarks section of http://msdn.microsoft.com/en-us/library/bb384061.aspx

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