Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数组,说
String[] a={a,b,c,d,e,f,g}
我希望这个数组在第二个数组中,但没有数组中的第一个元素,例如
String[] b{b,c,d,e,f,g}
我如何实现这一目标?
您可以使用System.arrayCopy() (jdk 1.5)或Arrays.copyOfRange() (jdk 1.6+) 方法。
System.arrayCopy()
Arrays.copyOfRange()