Object.GetType()可以返回null吗? [英] Can Object.GetType() ever return null?

查看:47
本文介绍了Object.GetType()可以返回null吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

很好奇.

在某个对象上调用 .GetType()时是否会返回null?

Is there any time when calling .GetType() on an object will return null?

假设用法:

public Type MyMethod( object myObject )
{
    return myObject.GetType();
}

推荐答案

对象上的GetType永远不会返回null-至少它将是object类型.如果myObject为null,则无论如何尝试调用GetType()都会得到一个异常

GetType on an object can never return null - at the very least it will be of type object. if myObject is null, then you'll get an exception when you try to call GetType() anyway

这篇关于Object.GetType()可以返回null吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆