public class CloneTableau
{
/*
* En java, les Tableaux sont automatiquement clonables
*/
public static void main(String[] argv) throws Exception
{
// Création d'un tableau de int
int[] myTab = new int[] { 1, 2, 3, 9, 8 };
// Cloner le tableau
int[] myCloneTab = (int[]) myTab.clone();
}
}