Tytuł: Klasy czII. Wiadomość wysłana przez: admin Marzec 30, 2011, 13:20:49 #include <cstdlib>
#include <iostream> #include<string> using namespace std; class motocykl { int rocznik; std::string producent; public: std::string model; motocykl(); ~motocykl(); //DEKLARACJA DESTRUKTORA }; motocykl::motocykl() { cout<<"Do tej pory nasz obiekt ma dane: \n"; cout<<"\n Producent: "<<producent; cout<<"\n Rocznik"<<rocznik; cout<<"\n Model"<<model; cout << "\n Teraz konstruktor nadaje poczatkowe \n"; cout << " wartosci danym obiektu \n"; producent="Yamaha"; model="YZF - R1"; rocznik=2008; cout<<"\n Kostruktor nadal wartosci: \n"; cout<<"\n Producent: "<<producent; cout<<"\n Model: "<<model; cout<<"\n Rocznik: "<<rocznik; } motocykl::~motocykl() { // DEFINICJA DESTRUKTORA cout << "\n \n zniszczylem ERLANA"; } int main(int argc, char *argv[]) { motocykl ERLAN; cout<<"\n-----------------------"; cout << "\n zmieniam model"; ERLAN.model="R6"; //ODWOÂŁANIE SIĂ DO SKÂŁADOWEJ OBIEKTU cout << " \n teraz model to: " << ERLAN.model; return(0); } |