Advertisement
Guest User

Memory Leak?

a guest
May 29th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.09 KB | None | 0 0
  1. #include<iostream>
  2. #include<string>
  3.  
  4. using namespace std;
  5.  
  6. class Dog
  7. {
  8. public:
  9.  
  10.     Dog(string name, int age);
  11.     ~Dog();
  12.  
  13.     void setAge(int age) { itsAge = age; }
  14.     int getAge() const { return itsAge; }
  15.     string getName() const { return itsName; }
  16.  
  17. private:
  18.     int itsAge;
  19.     string itsName;
  20. };
  21.  
  22. Dog::Dog(string name, int age)
  23. {
  24.     itsAge = age;
  25.     itsName = name;
  26.     cout << "Wuff-wuff! " << this->getName() << " itt van!" << endl;
  27. }
  28.  
  29. Dog::~Dog()
  30. {
  31.     cout << "Bye-bye " << this->getName() << "!" << endl;
  32. }
  33.  
  34. Dog * makeDog();
  35.  
  36. int main()
  37. {
  38.  
  39.     /**
  40.     Dog Pajti = *makeDog();
  41.     cout << "Pajti " << Pajti.getAge() << " eves!" << endl;
  42.     Pajti.setAge(3);
  43.     cout << "Pajti " << Pajti.getAge() << " eves!" << endl;
  44.     */
  45.  
  46.     Dog * Pajti = makeDog();
  47.     cout << "Pajti " << Pajti->getAge() << " eves!" << endl;
  48.     Pajti->setAge(3);
  49.     cout << "Pajti " << Pajti->getAge() << " eves!" << endl;
  50.     delete Pajti;
  51.     Pajti = NULL;
  52.  
  53.     return 0;
  54. }
  55.  
  56. Dog * makeDog()
  57. {
  58.     Dog * SimpleDog = new Dog("Pajti",2);
  59.     return SimpleDog;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement