gpt4 book ai didi

JAVA - 使用列表重构多个 "instanceof"

转载 作者:行者123 更新时间:2023-12-01 09:38:55 27 4
gpt4 key购买 nike

目前我正在检查一个对象是否是 X、Y、Z 的实例并应用一些方法。 (这些只是插图:)

if (X instanceof Car || X instaceof Bus || ...) {
X.color = RED;
}

但是,如果我有 300 个对象要比较(例如:汽车、公共(public)汽车、自行车、火车、飞机……),我将如何对其进行因式分解?我想过制作一个列表或数组,但初始化它似乎有点长:

Car car = new Car();
Bus bus = new Bus();
...
List<Transportation> list_t = Arrays.asList(car, bus, ...);
for (Transportation t : list_t) {
if (X instance of t)
X.color = RED;
}

如有任何建议,我们将不胜感激,谢谢。

最佳答案

我要么使用通用的父接口(interface)。

class Car implements DisplayColour {
public Color displayColor() {
return Color.RED;
}

或者,如果您知道所有可能的类,我会使用 HashMap。

static final Map<Class, Color> classToColorMap = new HashMap<>(); 
static {
classToColorMap.put(Car.class, Color.RED);
}

关于JAVA - 使用列表重构多个 "instanceof",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38609521/

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