如何获取String[]
并复制String[]
,但没有第一个字符串?
示例:如果我有这个......
String[] colors = {"Red", "Orange", "Yellow"};
我如何创建一个新的字符串,就像字符串集合颜色,但没有红色?
答案 0 :(得分:14)
您可以使用Arrays.copyOfRange
:
String[] newArray = Arrays.copyOfRange(colors, 1, colors.length);
答案 1 :(得分:8)
忘记数组。它们不是初学者的概念。您可以更好地投入时间学习Collections API。
/* Populate your collection. */
Set<String> colors = new LinkedHashSet<>();
colors.add("Red");
colors.add("Orange");
colors.add("Yellow");
...
/* Later, create a copy and modify it. */
Set<String> noRed = new TreeSet<>(colors);
noRed.remove("Red");
/* Alternatively, remove the first element that was inserted. */
List<String> shorter = new ArrayList<>(colors);
shorter.remove(0);
为了与基于数组的遗留API进行互操作,Collections
中有一个方便的方法:
List<String> colors = new ArrayList<>();
String[] tmp = colorList.split(", ");
Collections.addAll(colors, tmp);
答案 2 :(得分:5)
String[] colors = {"Red", "Orange", "Yellow"};
String[] copy = new String[colors.length - 1];
System.arraycopy(colors, 1, copy, 0, colors.length - 1);