gpt4 book ai didi

java - TypeUtils 说 "null"是 "Object.class"的实例?

转载 作者:行者123 更新时间:2023-11-30 06:52:29 24 4
gpt4 key购买 nike

关于以下代码 org.apache.commons.lang3.reflect.TypeUtilsnullObject.class 的一种类型。这不是不正确吗?

public static void main(String args[]) {

Boolean bool = null;

if (TypeUtils.isInstance(bool, Object.class)) {
System.out.println("bool isInstance Object-true");
} else {
System.out.println("bool isInstance Object-false");
}


}

最佳答案

没错。 function's documentation说如下:

Checks if the given value can be assigned to the target type following the Java generics rules.

并且由于您可以将 null 分配给 Object 类型的变量,因此返回 true。

如果没有该文档,我认为您是正确的,因为 null 表示没有实例,无论类型如何。

关于java - TypeUtils 说 "null"是 "Object.class"的实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38825509/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com