Java 中的 null instanceof Object 是什么呢?

博客讨论了Java中`null instanceof Object`的用法,指出在HashMap源码中直接使用`x instanceof Comparable`未检查`x`是否为null的情况。通过示例代码展示`null instanceof Object`的结果为false,表明此用法可以间接替代`o == null`的检查。文章提到虽然在某些情况下可以使用,但性能影响需要进一步评估。
摘要由CSDN通过智能技术生成

Java 中的 null instanceof Object 是什么呢?

在 JDK 的 HashMap 源码中有这么一个方法:

static Class<?> comparableClassFor(Object x) {
    // 在这一行,它并没有判断 x == null 的情况,直接 instanceof 了
    // 这样是可行的么?
    if (x instanceof Comparable) {
        Class<?> c; Type[] ts, as; Type t; ParameterizedType p;
        if ((c = x.getClass()) == String.class) // bypass checks
            return c;
        if ((ts = c.getGenericInterfaces()) != null) {
            for (int i = 0; i < ts.length; ++i) {
                if (((t = ts[i]) instanceof ParameterizedType) &&
                    ((p = (ParameterizedType)t).getRawType() ==
                        Comparable.class) &&
                    (as = p.getActualTypeArguments()) != null &&
                    as.length == 1 && as[0] == c) // type arg is c
                    return c;
            }
        }
    }
    return null;
}
    // 在这一行,它并没有判断 x == null 的情况,直接 instanceof 了
    // 这样是可行的么?
    if (x instanceof Comparable) {

做个小 demo

public static void main(String[] args) {
    Object o = null;
    System.out.println(o instanceof Object);
    // 输出是 false
}

根据返回的结果,说明了,如果是对象为 nullinstanceof 的结果也是 false,也就是说,instanceof Object 在一定程度上的能够代替 o == null 的判断。

性能问题就要另行进行评估了。

Java 中的 null instanceof Object 是什么呢?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

lixifun

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值