1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
#include <iostream>
#include<stdlib.h>
#include<string>
using namespace std;
class BUILDING{
public :
string NOM;
float superficie;
string adresse;
static int count_BUILDING;
BUILDING * m_pBUILDINGtSuivant;
BUILDING(string name,float super=0,string adr="")
{
count_BUILDING++;
NOM=name;
superficie=super;
adresse=adr;
m_pBUILDINGSuivant=0; }
BUILDING()
{
count_BUILDING++;
}
~BUILDING()
{
count_BUILDING--;
}
BUILDING(BUILDING &P)
{
count_BUILDING++;
NOM=P.NOM;
superficie=P.superficie;
adresse=P.adresse;
}
void show_count(){
cout<<"nombre de BUILDING "<<count_BUILDING;
}
virtual void affiche(){
cout<<NOM<<endl;
cout<<"area est "<<superficie<<endl;
cout<<"adresse "<<adresse<<endl;
cout<<"counter "<<count_BUILDING<<endl;
};
};
int BUILDING::count_BUILDING=0; |
Partager