therier heu...coucou! | benou a écrit :
Code :
- Object[] t1 = ...;
- Object[] t2 = ...;
- // concaténation
- Object[] total = new Object[t1.length + t2.length] ;
- System.arrayCopy(t1, 0, total, 0, t1.length);
- System.arrayCopy(t2, 0, total, t1.length, t2.length);
|
|
Tiens d'ailleurs, j'en profite pour signaler que j'ai eu des surprises des fois sur la methode System.arrayCopy() sur des JVM exotiques(SCOpar exemple) : crash de la JVM entre autre. |