将属性作为“输出”传递; C# 中的参数

发布于 2024-08-04 03:38:07 字数 360 浏览 6 评论 0原文

假设我有:

public class Bob
{
    public int Value { get; set; }
}

我想将 Value 成员作为输出参数传递,

Int32.TryParse("123", out bob.Value);

但我收到编译错误,“'out'参数未分类为变量。”有什么办法可以实现这一点,或者我必须提取一个变量,à la:

int value;
Int32.TryParse("123", out value);
bob.Value = value;

Suppose I have:

public class Bob
{
    public int Value { get; set; }
}

I want to pass the Value member as an out parameter like

Int32.TryParse("123", out bob.Value);

but I get a compilation error, "'out' argument is not classified as a variable." Is there any way to achieve this, or am I going to have to extract a variable, à la:

int value;
Int32.TryParse("123", out value);
bob.Value = value;

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

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

发布评论

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

评论(2

锦爱 2024-08-11 03:38:07

您必须显式使用字段和“普通”属性,而不是自动实现的属性:

public class Bob
{
    private int value;
    public int Value
    { 
        get { return value; } 
        set { this.value = value; }
    }
}

然后您可以将字段作为输出参数传递:

Int32.TryParse("123", out bob.value);

但是,当然,这只在同一类,因为该字段是私有的(并且应该是!)。

属性只是不允许你这样做。即使在 VB 中,您可以通过引用传递属性或将其用作输出参数,但基本上还是有一个额外的临时变量。

如果您不关心 TryParse 的返回值,您始终可以编写自己的辅助方法:

static int ParseOrDefault(string text)
{
    int tmp;
    int.TryParse(text, out tmp);
    return tmp;
}

然后使用:

bob.Value = Int32Helper.ParseOrDefault("123");

这样您就可以使用单个临时变量,即使您需要在多个中执行此操作地方。

You'd have to explicitly use a field and "normal" property instead of an auto-implemented property:

public class Bob
{
    private int value;
    public int Value
    { 
        get { return value; } 
        set { this.value = value; }
    }
}

Then you can pass the field as an out parameter:

Int32.TryParse("123", out bob.value);

But of course, that will only work within the same class, as the field is private (and should be!).

Properties just don't let you do this. Even in VB where you can pass a property by reference or use it as an out parameter, there's basically an extra temporary variable.

If you didn't care about the return value of TryParse, you could always write your own helper method:

static int ParseOrDefault(string text)
{
    int tmp;
    int.TryParse(text, out tmp);
    return tmp;
}

Then use:

bob.Value = Int32Helper.ParseOrDefault("123");

That way you can use a single temporary variable even if you need to do this in multiple places.

乖乖公主 2024-08-11 03:38:07

你可以实现这一目标,但不能通过财产实现。

public class Bob {
    public int Value { get; set; } // This is a property

    public int AnotherValue; // This is a field
}

您不能在 Value 上使用 out,但可以在 AnotherValue 上使用。

这会起作用

Int32.TryParse("123", out bob.AnotherValue);

,但是,通用准则告诉您不要将类字段公开。所以你应该使用临时变量方法。

You can achieve that, but not with a property.

public class Bob {
    public int Value { get; set; } // This is a property

    public int AnotherValue; // This is a field
}

You cannot use out on Value, but you can on AnotherValue.

This will work

Int32.TryParse("123", out bob.AnotherValue);

But, common guidelines tells you not to make a class field public. So you should use the temporary variable approach.

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