阿提说说 2022-06-17 23:56 采纳率: 100%
浏览 21
已结题

Class类中isInstance判断数组什么时候结果为true

问题遇到的现象和发生背景

Class类中isInstance的使用

如果此Class对象表示一个数组类,如果指定的Object参数可以通过恒等转换或扩展引用转换转换为数组类的对象,则此方法返回true ;否则返回false 。

除了object是类的对象外,还有什么情况是true;

问题相关代码,请勿粘贴截图

//如果object是数组对象
Integer[] integers = new Integer[0];
System.out.println(Number.class.isInstance(integers)); //false
System.out.println(new Integer[0].getClass().isInstance(integers)); //true

运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果
  • 写回答

1条回答 默认 最新

  • 一头小山猪 一头小山猪(个人IP)官方账号 2022-06-18 09:10
    关注

    子类对象也可以,就是在解释说明中的可转换的情况,如下情况均为true。

            Father father = new Son();
            System.out.println(father instanceof Father);
            System.out.println(father instanceof Son);
            Son son = new Son();
            System.out.println(son instanceof Father);
            System.out.println(son instanceof Son);
            Father[] fathers = new Son[0];
            System.out.println(new Father[0].getClass().isInstance(fathers));
            System.out.println(new Son[0].getClass().isInstance(fathers));
            Son[] sons = new Son[0];
            System.out.println(new Father[0].getClass().isInstance(sons));
            System.out.println(new Son[0].getClass().isInstance(sons));
    
    

    Father为Son的父类,这个是判断实例的类型,所以主要看等号右边。

    有帮助请采纳,还有不懂的可以继续追问~

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 6月26日
  • 已采纳回答 6月18日
  • 创建了问题 6月17日

悬赏问题

  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 android报错 brut.common.BrutException: could not exec (exit code = 1)
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA
  • ¥20 csv格式数据集预处理及模型选择
  • ¥15 部分网页页面无法显示!