SALUT
je veux bien comrendre à quoi servent ces 3 lignes:Code:class matrice { double *tab; unsigned lgn, col; // nb de lignes et colonnes public: matrice& operator=(matrice& m) { lgn = m.lgn; col = m.col; tab = new double[lgn*col]; return *this; } };
et merciCode:lgn = m.lgn; col = m.col; tab = new double[lgn*col]; return *this;
-----