gpt4 book ai didi

java继承: distinguish between types of inherited classes

转载 作者:行者123 更新时间:2023-12-01 07:34:10 26 4
gpt4 key购买 nike

我有一个名为 A 的抽象类,以及两个继承类:BC。我有一个带有参数的方法:

myMethod (final A a)

我想针对实例化对象的类型做出不同的事情。我该怎么做?

一个不错的选择是遵循另一种设计模式,但我现在不允许更改我的代码。

谢谢。

最佳答案

使用instanceof关键字。例如:

if (a instanceof B) {...}
else if (a instanceof C) {...}
else {...}

关于java继承: distinguish between types of inherited classes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14387110/

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