java中拼接兩個數組


1 int a[]={1,2,3,2};
2 int b[]={4,2,90,8,98};
3 int[] d3 = new int[a.length + b.length];
4 System.arraycopy(a, 0, d3, 0, a.length);
5 System.arraycopy(b, 0, d3, a.length, b.length);

System.arraycopy的參數意義:(src, srcPos, dest, destPos, length)--(源數組,源數組開始位置,目標數組,目標數組開始位置,復制長度)


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM