Mes TD de programmation orientée objet (INSA Toulouse)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Fichier.java 261B

123456789
  1. public class Fichier extends Node {
  2. public Fichier (String path, long size, int depth) {
  3. super(path, size, depth);
  4. }
  5. @Override public void afficher() {
  6. System.out.println("| " + this.name + "[total = " + size + " octets]");
  7. }
  8. }