Advertisement
Lauda

Untitled

Nov 20th, 2012
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 6.09 KB | None | 0 0
  1. // OSOBA.H
  2. #ifndef OSOBA_H_INCLUDED
  3. #define OSOBA_H_INCLUDED
  4.  
  5. #include "dinstring.h"
  6. using namespace std;
  7.  
  8.  
  9. class Osoba {
  10.     private:
  11.         DinString ime, prezime;
  12.  
  13.     public:
  14.         Osoba(const char *s1 = "", const char *s2 = "") : ime(s1), prezime(s2)
  15.         {
  16.             cout << "Osoba: Konstruktor 1." << endl;
  17.         }
  18.  
  19.         Osoba(const DinString &ds1, const DinString &ds2) : ime(ds1), prezime(ds2)
  20.         {
  21.             cout << "Osoba: Konstruktor 2." << endl;
  22.         }
  23.  
  24.         Osoba(const Osoba &ro) : ime(ro.ime), prezime(ro.prezime)
  25.         {
  26.             cout << "Osoba: Konstruktor 3." << endl;
  27.         }
  28.  
  29.         ~Osoba()
  30.         {
  31.             cout << "Osoba: Destruktor." << endl;
  32.         }
  33.  
  34.         void predstaviSe() const
  35.         {
  36.             cout << "Zovem se " << ime << " " << prezime << "." << endl;
  37.         }
  38. };
  39.  
  40. #endif // OSOBA_H_INCLUDED
  41.  
  42. // PHDSTUDENT.H
  43. #ifndef PHDSTUDENT_H_INCLUDED
  44. #define PHDSTUDENT_H_INCLUDED
  45.  
  46. #include "student.h"
  47.  
  48. class PhDStudent : public Student
  49. {
  50.     protected:
  51.         double prosecnaOcena;
  52.  
  53.     public:
  54.         PhDStudent(const char *s1 = "", const char *s2 = "", int i = 0, double po = 0.f) : Student(s1, s2, i), prosecnaOcena(po)
  55.         {
  56.             cout << "PhDStudent: Konstruktor 1." << endl;
  57.         }
  58.  
  59.         PhDStudent(const DinString &ds1, const DinString &ds2, int i, double po) : Student(ds1, ds2, i), prosecnaOcena(po)
  60.         {
  61.             cout << "PhDStudent: Konstruktor 2." << endl;
  62.         }
  63.  
  64.         PhDStudent(const Osoba &os, int i, double po) : Student(os, i), prosecnaOcena(po)
  65.         {
  66.             cout << "PhDStudent: Konstruktor 3." << endl;
  67.  
  68.         }
  69.  
  70.         PhDStudent(const Student &s, double po) : Student(s), prosecnaOcena(po)
  71.         {
  72.             cout << "PhDStudent: Konstruktor 4." << endl;
  73.         }
  74.  
  75.         PhDStudent(const PhDStudent &phds) : Student((Student)phds), prosecnaOcena(phds.prosecnaOcena)
  76.         {
  77.             cout << "PhDStudent: Konstruktor 5." << endl;
  78.         }
  79.  
  80.         ~PhDStudent()
  81.         {
  82.             cout << "PhDStudent: Destruktor." << endl;
  83.         }
  84.  
  85.         void predstaviSe() const
  86.         {
  87.             Student :: predstaviSe();
  88.             cout << "Diplomirao sam sa prosecnom ocenom " << prosecnaOcena << ", a sada sam student doktorskih studija" << endl;
  89.         }
  90. };
  91. #endif // PHDSTUDENT_H_INCLUDED
  92.  
  93. // DINSTRING.H
  94. #ifndef DINSTRING_H_INCLUDED
  95. #define DINSTRING_H_INCLUDED
  96.  
  97. #include <iostream>
  98. using namespace std;
  99.  
  100. class DinString {
  101.     private:
  102.         int duzina;
  103.         char *text;
  104.  
  105.     public:
  106.         DinString();
  107.         DinString(const char[]);
  108.         DinString(const DinString&);
  109.         ~DinString();
  110.  
  111.         int length() const;
  112.         char& operator[](int);
  113.         char operator[](int) const;
  114.         DinString& operator=(const DinString&);
  115.         DinString& operator+=(const DinString&);
  116.         friend bool operator==(const DinString&, const DinString&);
  117.         friend bool operator!=(const DinString&, const DinString&);
  118.         friend DinString operator+(const DinString&, const DinString&);
  119.         friend ostream& operator<<(ostream, const DinString&);
  120.  
  121. };
  122.  
  123.  
  124. #endif // DINSTRING_H_INCLUDED
  125.  
  126. // DINSTRING.CPP
  127. #include "dinstring.h"
  128.  
  129. DinString :: DinString()
  130. {
  131.     duzina = 0;
  132.     text = NULL;
  133. }
  134.  
  135. DinString :: DinString(const char ulazniStr[])
  136. {
  137.     duzina = 0;
  138.     while (ulazniStr[duzina] != '\0')
  139.         duzina++;
  140.     text = new char[duzina+1];
  141.  
  142.     for (int i=0; i<duzina; i++)
  143.         text[i] = ulazniStr[i];
  144.     text[duzina] = '\0';
  145. }
  146.  
  147. DinString :: DinString(const DinString &ds)
  148. {
  149.     duzina = ds.duzina;
  150.     text = new char[duzina+1];
  151.     for (int i = 0; i<duzina; i++)
  152.         text[i] = ds.text[i];
  153.     text[duzina] = '\0';
  154. }
  155.  
  156. DinString :: ~DinString()
  157. {
  158.     delete[] text;
  159. }
  160.  
  161. // STUDENT.H
  162. #ifndef STUDENT_H_INCLUDED
  163. #define STUDENT_H_INCLUDED
  164.  
  165. #include "osoba.h"
  166.  
  167. class Student : public Osoba
  168. {
  169.     protected:
  170.         int brojIndeksa;
  171.  
  172.     public:
  173.         Student(const char *s1 = "", const char *s2 = "", int i = 0) : Osoba(s1, s2), brojIndeksa(i)
  174.         {
  175.             cout << "Student: Konstruktor 1." << endl;
  176.         }
  177.  
  178.         Student(const DinString &ds1, const DinString &ds2, int i) : Osoba(ds1, ds2, brojIndeksa(i)
  179.         {
  180.             cout << "Student: Konstruktor 2." << endl;
  181.         }
  182.  
  183.         Student(const Osoba &os, int i) : Osoba(os), brojIndeksa(i)
  184.         {
  185.             cout << "Student: Konstruktor 3." << endl;
  186.         }
  187.  
  188.         Student(const Student &s) : Osoba((Osoba)s), brojIndeksa(s.brojIndeksa)
  189.         {
  190.             cout << "Student: Konstruktor 4." << endl;
  191.         }
  192.  
  193.         ~Student()
  194.         {
  195.             cout << "Student: Destruktor." << endl;
  196.         }
  197.  
  198.         void predstaviSe() const
  199.         {
  200.             Osoba :: predstaviSe();
  201.             cout << "Broj mog indeksa je " << brojIndeksa << "." << endl;
  202.         }
  203. };
  204.  
  205.  
  206. #endif // STUDENT_H_INCLUDED
  207.  
  208. // MAIN
  209. #include "phdstudent.h"
  210.  
  211. int main()
  212. {
  213.     const char *s1 = "Petar";
  214.     const char *s2 = "Petrovic";
  215.     const char *s3 = "Jovan";
  216.     const char *s4 = "Jovanovic";
  217.  
  218.     cout << "*** Kreiranje objekata ds1, ds2, ds3 i ds4!" << endl;
  219.     DinString ds1(s1), ds2(s2), ds3(s3), ds4(s4);
  220.  
  221.     cout << endl << "*** Kreiranje objekata os1, os2 i os3!" << endl;
  222.     Osoba os1(s1, s2), os2(ds3, ds4), os3(os2);
  223.     cout << endl << "*** Kreiranje objekata st1, st2, st3 i st4!" << endl;
  224.     Student st1(s1, s2, 1234), st2(ds1, ds2, 1234), st3(os2, 1234), st4(st2);
  225.     cout << endl << "*** Kreiranje objekata phds1...phds4!" << endl;
  226.     PhDStudent phds1(s1, s2, 1234, 8.56), phds2(ds1, ds2, 1234, 8.56), phds3(os3, 1234, 8.77), phds4(st3, 8.77);
  227.     cout << endl << "*** Predstavljanje: " << endl;
  228.     os1.predstaviSe();
  229.     os2.predstaviSe();
  230.     os3.predstaviSe();
  231.     st1.predstaviSe();
  232.     st2.predstaviSe();
  233.     st3.predstaviSe();
  234.     st4.predstaviSe();
  235.     phds1.predstaviSe();
  236.     phds2.predstaviSe();
  237.     phds3.predstaviSe();
  238.     phds4.predstaviSe();
  239.  
  240.     cout << "*** Unistavanje objekata!" << endl;
  241.  
  242.     return 0;
  243. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement