vb.net – Nothing = String.Empty(为什么这些相等?)

前端之家收集整理的这篇文章主要介绍了vb.net – Nothing = String.Empty(为什么这些相等?)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么第一个if语句评估为true?我知道如果我使用“is”而不是“=”,那么它不会评估为true。如果我用“Foo”替换String.Empty,则不会将其求值为true。 String.Empty和“Foo”都有相同类型的String,所以为什么一个评估为true而另一个不是?
//this evaluates to true
    If Nothing = String.Empty Then

    End If

    //this evaluates to false
    If Nothing = "Foo" Then

    End If
VB.net中的任何内容都不是类型的默认值。 language spec在第2.4.7节中说:

Nothing is a special literal; it does not have a type and is convertible to all types in the type system,including type parameters. When converted to a particular type,it is the equivalent of the default value of that type.

所以,当你对String.Empty进行测试时,Nothing被转换为一个长度为0的字符串。Is操作符应用于对Nothing进行测试,String.Empty.Equals(Nothing)也将返回false。

原文链接:https://www.f2er.com/vb/256163.html

猜你在找的VB相关文章