[PDF] [PDF] Collections Collections Collections javautilArrayList

Peter Sander ESSI-Université de Nice Sophia Antipolis 4 java util ArrayList ❍ Solution ○ la classe java util ArrayList ○ c'est la classe la plus utilisée



Previous PDF Next PDF





[PDF] Java : les collections

ArrayList Exemple avec ArrayList package eclipse classes; import java util ArrayList; public class Main { public static void main(String[] args) { ArrayList list 



[PDF] Collections Collections Collections javautilArrayList

Peter Sander ESSI-Université de Nice Sophia Antipolis 4 java util ArrayList ❍ Solution ○ la classe java util ArrayList ○ c'est la classe la plus utilisée



[PDF] 1 ArrayList and Iterator in Java

code will remove all the elements of ArrayList whose object is obj obj clear(); Examples package com tutorialspoint; import java util ArrayList; public class 



[PDF] Utilisation dobjets : String et ArrayList - Cnam

En java, les chaînes de caractères sont des objets Nous allons apprendre dans ce chapitre à mieux les utiliser La seconde classe s'appelle ArrayList



[PDF] ArrayList

The Java collection classes, including ArrayList, have one major constraint: First we will look at a small ArrayList example to see roughly how it works, and 



[PDF] CS 106A, Lecture 19 ArrayLists

CS 106A, Lecture 19 ArrayLists suggested reading: Java Ch 11 8 •Example: reversible writing ArrayList myArrayList = new ArrayList(); 



[PDF] ArrayLists, Generics A data structure is a software construct used to

The ArrayList class provided by Java is essentially a way to create an array that can grow For example, in our trivia game we declared the array to be of size 5



[PDF] ArrayList - GitHub Pages

Example: reading words from a file, but you don't ArrayList is a class in Java java lang ClassCastException: line xx • To get a "String" from ArrayList, we 



[PDF] Loops and ArrayLists

To create an ArrayList, we can simply call the constructor from JAVA's ArrayList class Here is an example of creating an ArrayList and storing it in a variable so 



[PDF] Java List Collection Tutorial and Examples

10 déc 2018 · add some elements to them; and then print out the collections: ArrayList quick example: List listStrings = new ArrayList();

[PDF] arraylist java problems

[PDF] arraylist java test sample

[PDF] arraylist of objects in java

[PDF] arraylist programming questions in java

[PDF] arraylist starts with 0 or 1

[PDF] arrays and do loops

[PDF] arrays and objects are examples of the primitive data type php

[PDF] arrays are allocated with the keyword

[PDF] arrays are everywhere

[PDF] arrays are immutable

[PDF] arrays are objects in java

[PDF] arrays are passed by reference

[PDF] arrays are passed to a method by ____

[PDF] arrays are quizlet

[PDF] arrays can store references to the objects of a class.

CollectionsCollections

Karima BoudaoudKarima Boudaoud

IUT- R&T

IUT- R&TPeter Sander ESSI-Université de Nice Sophia

Antipolis2CollectionsCollections

Définition

une collection est un objet qui contient d'autres objets exemple: un tableau est une collection

Classes & interfacesAbstractCollection

ArrayList

Arrays

Collections

HashSet

LinkedList

TreeSet

Vector

List Map Set

SortedMap

SortedSet

Package

Ces classes et interfaces se trouvent dans le

paquetage java.util

Peter Sander ESSI-Université de Nice Sophia

Antipolis3CollectionsCollections

Problème

les tableaux ne répondent pas toujours à tous les besoins quand un nombre inconnu d'objets sont à stocker... on pourrait créer un très grand tableau, maisce n'est pas très " propre » ce n'est jamais assez grand !

Peter Sander ESSI-Université de Nice Sophia

Solution

la classe java.util.ArrayListjava.util.ArrayList c'est la classe la plus utilisée un ArrayListArrayList se comporte comme un tableau il contient plusieurs objets (de la classe Object uniquement) ne peut contenir des types primitifs il accède à ses éléments à l'aide d'un index il grossit automatiquement quand plus de place pour contenir de nouveaux objets il existe des méthodes pour ajouter ou enlever un élément

Peter Sander ESSI-Université de Nice Sophia

Antipolis5

ArrayListArrayList

Création d'un ArrayList

il est possible d'indiquer la taille initiale dans le constructeur

Il y a 2 constructeurs :

ArrayList()

ArrayList(int initialCapacity)

Peter Sander ESSI-Université de Nice Sophia

Antipolis6

ArrayListArrayList

Modification d'éléments

Il y a deux manières d'ajouter un élémentà la fin d'un ArrayList avec la méthode boolean add(Object newElement)

à une position donnée

void add(int index, Object newElement)

throws IndexOutOfBoundsExceptionle paramètre index indique où insérer le nouvel élément

si position incorrecte, une exception est levée

Peter Sander ESSI-Université de Nice Sophia

Antipolis7

ArrayListArrayList

Modification d'éléments

pour remplacer un objet à une position donnée

Object set(int index, Object newElement)

throws IndexOutOfBoundsException cette méthode fonctionne comme void add(int index, Object newElement) sauf que l'élément à la position index est remplacé

Peter Sander ESSI-Université de Nice Sophia

Antipolis8

ArrayListArrayList

Accès aux Éléments

pour accéder à un élémentil n'y a pas d'indexation comme pour les tableaux il faut utiliser la méthode spécialisée Object get(int index) throws IndexOutOfBoundsException exemple :

ArrayList aList = new ArrayList();

aList.add(new PacMan()); aList[0].display(); // interdit ! aList.get(0).display(); // ok

Peter Sander ESSI-Université de Nice Sophia

Antipolis9

Accès aux Éléments

pour tester le contenu, il existe la méthode boolean isEmpty() pour connaître le nombre d'éléments dans la liste, il faut utiliser la méthode : int size() exemple : if (!aList.isEmpty()) { for (int i=0; iArrayListArrayList

Peter Sander ESSI-Université de Nice Sophia

Antipolis10

ArrayListArrayList

Recopie

pour recopier une liste dans un tableau, il faut utiliser la méthode

Object[ ] toArray()

exemple :

ArrayList aList = new ArrayList();

Object[] tab = new Object[aList.size()];

tab = aList.toArray();

Peter Sander ESSI-Université de Nice Sophia

Antipolis11

ArrayListArrayList

Recherche d'éléments

pour savoir si un objet est présent ou non dans une liste, il faut utiliser la méthode boolean contains(Object obj) pour connaître la position d'un élément dans une liste, on peut utiliser deux méthodes pour avoir la première occurrence, il faut utiliser int indexOf(Object obj) pour avoir la dernière occurrence, il faut utiliser int lastIndexOf(Object obj)

Peter Sander ESSI-Université de Nice Sophia

Antipolis12

ArrayListArrayList

Suppression d'éléments

Pour supprimer un élément à une position

donnée, il faut utiliser la méthode

Object remove(int index)

throws IndexOutOfBoundsException

Peter Sander ESSI-Université de Nice Sophia

Antipolis13

CollectionsCollections

Autre classe

il existe une autre classe qui est aussi très utile : java.util.Vector voir le package java.util.Vector pour connaître les différences avec ArrayList

Karima Boudaoud IUT GTR - Sophia Antipolis 14

RésuméRésumé

boolean add(Object obj) void add(int indice, Object obj) boolean contains(Object obj)

Object get(int indice)

int indexOf(Object obj) int lastIndexOf(Object obj) void remove(int indice) void set(indice, Object obj) int size()

Karima Boudaoud IUT GTR - Sophia Antipolis 15

ExempleExemple

public class Employe { private String leNom, lePrenom; private double leSalaire public Employe (String unNom, String unPrenom) { leNom = unNom; lePrenom = unPrenom; public Employe (String unNom, String unPrenom, double unSalaire) { leNom = unNom; lePrenom = unPrenom; leSalaire = unSalaire; public String getNom() return leNom;

Karima Boudaoud IUT GTR - Sophia Antipolis 16

ExempleExemple

public static void main(String [] args) {

ArrayList tableauEmployes = new ArrayList();

Employe emp1 = new Employe("Charles", "McCathieNevile");

Employe emp2 = new Employe("Peter", "Sander");

tableauEmployes.add(emp1); tableauEmployes.add(emp2);

If (!tableauEmployes.isEmpty()) {

for (int i = 0; i