Kelkun pourai mexpliker le derolement de ceci

Fermé
janemba59 - 25 nov. 2004 à 11:09
 JuB - 25 nov. 2004 à 17:30
#include <iostream.h>
#include <string>
class CC {
static int n;

public : CC(){
n++;
}

static int compter(){
return(n);
}
};

int CC::n=1;


class AA {
CC c; int a;
};


class BB{
AA a;CC c;int b;

public : BB(int i):b(i){}

};


void main()
{AA al; int l;

cout<<CC::compter()<<"_ok\n";

BB bl(10);

cout<<CC::compter();

cout<<"\nvoulez vous quitter?\t";
cin>>l;

}

1 réponse

t'as chopé ce code ou ?
1