TP-programmation-orientee-o.../TP08/Cellule.java
2023-06-20 21:02:09 +02:00

12 lines
198 B
Java

public class Cellule<E> {
public E element;
public Cellule<E> suivante;
public Cellule(E elm, Cellule<E> next) {
this.element = elm;
this.suivante = next;
}
}