代码之家  ›  专栏  ›  技术社区  ›  John Farrell

object.getType()是否可以返回空值?

  •  7
  • John Farrell  · 技术社区  · 15 年前

    只是好奇而已。

    有时间打电话吗 .GetType() 对象将返回空值?

    假设用途:

    public Type MyMethod( object myObject )
    {
        return myObject.GetType();
    }
    
    5 回复  |  直到 11 年前
        1
  •  14
  •   AdaTheDev    15 年前

    对象的GetType永远不能返回空值-至少它是Object类型。如果myObject为空,则在尝试调用getType()时将出现异常。

        2
  •  5
  •   jason    15 年前

    不,它不会回来的 null . 但这是一个需要注意的问题!

    static void WhatAmI<T>() where T : new() { 
        T t = new T(); 
        Console.WriteLine("t.ToString(): {0}", t.ToString());
        Console.WriteLine("t.GetHashCode(): {0}", t.GetHashCode());
        Console.WriteLine("t.Equals(t): {0}", t.Equals(t)); 
    
        Console.WriteLine("t.GetType(): {0}", t.GetType()); 
    } 
    

    这是一个确定的输出 T :

    t.ToString():
    t.GetHashCode(): 0
    t.Equals(t): True
    
    Unhandled Exception: System.NullReferenceException: Object reference not set to
    an instance of an object.
    

    是什么 T ?答:任何 Nullable<U> .

    (Marc Gravell的原始概念)

        3
  •  2
  •   Jake Pearson    15 年前

    如果myObject参数为空,则无法对其调用getType()。将引发NullReferenceException。否则,我想你会没事的。

        4
  •  0
  •   Neil N HLGEM    15 年前

    http://msdn.microsoft.com/en-us/library/system.object.gettype(VS.85).aspx

    msdn只列出类型对象作为返回值。

    我可以想象,除此之外,您所能得到的只是一个“未设置为对象的实例”异常(或者它的空引用),因为msdn确实指定了实例。

        5
  •  0
  •   Wim    15 年前

    基本上,不,它不能(永远返回空值)也不会。