vb.net – 为什么Integer.TryParse在失败时将结果设置为零?

前端之家收集整理的这篇文章主要介绍了vb.net – 为什么Integer.TryParse在失败时将结果设置为零?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我对Integer.TryParse()函数的理解是,它试图从传入的字符串中解析一个整数,如果解析失败,结果整数将保持原样.

我有一个默认值为-1的整数,我希望保持为-1.但是,无法解析的Integer.TryParse()函数将此默认值更改为零.

Dim defaultValue As Integer = -1
Dim parseSuccess As Boolean = Integer.TryParse("",defaultValue)
Debug.Print("defaultValue {0}",defaultValue)
Debug.Print("parseSuccess {0}",parseSuccess)

我的期望是上面的代码片段应该输出

defaultValue -1
parseSuccess False

但是它输出

defaultValue 0
parseSuccess False

我的理解是否正确?

它是一个out参数,这意味着它必须由方法设置(除非它抛出异常) – 该方法无法看到原始值是什么.

另一种方法是将其设置为ref参数并仅将其设置为成功,但这意味着强制调用者首先初始化变量,即使他们不想要这种行为.

您可以编写自己的实用程序方法

public bool TryParseInt32(string text,ref int value)
{
    int tmp;
    if (int.TryParse(text,out tmp))
    {
        value = tmp;
        return true;
    }
    else
    {
        return false; // Leave "value" as it was
    }
}
原文链接:https://www.f2er.com/vb/255896.html

猜你在找的VB相关文章