如何获取类的类型进行比较

发布于 2024-08-25 12:58:03 字数 91 浏览 7 评论 0原文

我有这个对象,它是超类的实例。我想知道该对象到底是哪个子类,以便我可以决定如何处理它。有这个 getClass() 方法,但它显然不用于比较问题。如何获取对象的子类型?

I have this object which is an instance of a superclass. I want to know which subclass that object really is, so that I can decide what to do with it. There is this getClass() method but it's apparently not used for comparison issues. How can I get the sub-type of my object?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如日中天 2024-09-01 12:58:03

如果您尝试执行此操作,但 instanceof,则可能存在设计缺陷。

public class MainClass {
  public static void main(String[] a) {

    String s = "Hello";
    if (s instanceof java.lang.String) {
      System.out.println("is a String");
    }
  }

}

请参阅谨防instanceof 运算符

You may have a design flaw if you're trying to do this but instanceof.

public class MainClass {
  public static void main(String[] a) {

    String s = "Hello";
    if (s instanceof java.lang.String) {
      System.out.println("is a String");
    }
  }

}

See Beware of instanceof operator.

Oo萌小芽oO 2024-09-01 12:58:03

Class c = (你的超类名称).getClass();

if(c.getName == "你的子类名")
采取行动

Class c = (your super class name).getClass();

if(c.getName == "your sub class name")
take action

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文