#include "D.h" // Fichier D.cpp #include using namespace std; D::D(int n) : _array(new int[n]), _n(n) { cout << "D::D(int n)" << endl; } D::~D(void) { delete [] _array; cout << "D::~D(void)" << endl; }