Newer
Older
public class MainArrayListPerso {
public static void main(String[] args) {
ArrayListPerso<Integer> arraylistPerso = new ArrayListPerso<Integer>();
for (int i = 0; i < 100000; i++) {
arraylistPerso.ajout(i, 0);
}
}
}