gpt4 book ai didi

java - 如何获取对象的类型以便可以将其与 instanceof 一起使用?

转载 作者:行者123 更新时间:2023-12-02 09:40:18 26 4
gpt4 key购买 nike

我正在用 Java 编写一个程序,并且有一个带有诸如 public void doSomething(Object o) 之类的 header 的方法,并且我想检查 o 是否是以下参数的适当类型另一种方法。所以我所拥有的是:

public void doSomething(Object o)
{
Method m = //get method of another method (using reflection)
Class<?> cl = m.getParameterTypes()[0]; //Get the class of the 0th parameter
if(o instanceof cl) //compile error here
//do something
}

但是这不起作用。有人可以帮忙吗?谢谢

最佳答案

试试这个:

if(c1.isInstance(o))
{
// ...
}

关于java - 如何获取对象的类型以便可以将其与 instanceof 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10040232/

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