gpt4 book ai didi

java - 数组作为对其他数组的引用

转载 作者:行者123 更新时间:2023-12-01 23:43:17 25 4
gpt4 key购买 nike

是否可以有一个包含名称或对其他数组的引用的数组?

例如

String[] fruits={"orange","apple"};
String[] colors={"red","blue","green"};

第三个数组String[] array1={"fruits","colors"};

我实际上有很多数组,根据传递的数组,我需要将它与已经存在的数组进行比较。

就像我传递一个 fruit 数组然后将 array1[0]th 数组(即水果数组)与传递的数组进行比较?

我可以将传递的数组与各个数组进行比较,并对每个数组进行比较,但是有更短的方法吗?

最佳答案

就像我在问题下面的评论中所建议的那样,您可以使用 map :

    String[] fruits = {"orange", "apple"};
String[] colors = {"red", "blue", "green"};

Map<String, String[]> map = new HashMap<>();
map.put("fruits", fruits);
map.put("colors", colors);

String[] toCompare = map.get("fruits"); // will return the fruits array

关于java - 数组作为对其他数组的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17589159/

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