How pointer is still able to read data even after 'delete' operator? [duplicate]

General Tech Bugs & Fixes 2 years ago

0 2 0 0 0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating

Posted on 16 Aug 2022, this text provides information on Bugs & Fixes related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Answers (2)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 2 years ago

 

This question already has an answer here:

I'm trying to understand Pointers to class. I also ran it on CodeBlocks. foo pointer.

// pointer to classes example
#include 
using namespace std;

class Rectangle {
  int width, height;
public:
  Rectangle(int x, int y) : width(x), height(y) {}
  int area(void) { return width * height; }
};


int main() {
  Rectangle obj (3, 4);
  Rectangle * foo, * bar, * baz;
  foo = &obj;
  bar = new Rectangle (5, 6);
  baz = new Rectangle[2] { {2,5}, {3,6} };
  cout << "obj's area: " << obj.area() << '\n';
  cout << "*foo's area: " << foo->area() << '\n';
  cout << "*bar's area: " << bar->area() << '\n';
  cout << "baz[0]'s area:" << baz[0].area() << '\n';
  cout << "baz[1]'s area:" << baz[1].area() << '\n';
  delete bar;
  delete[] baz;
  delete foo;
   cout << "Try: ";
   cout << foo->area();
  return 0;
}

Actual Result: obj's area: 12 *foo's area: 12 *bar's area: 30 baz[0]'s area:10 baz[1]'s area:18 Try: 12

profilepic.png
manpreet 2 years ago

The pointer is invalidated by the delete expression.

The behaviour of indirecting through an invalid pointer is undefined. Your program indirects through foo after it has been deleted. The behaviour of your program is undefined.

How pointer is still able to read data even after 'delete' operator?

Because the behaviour is undefined.


0 views   0 shares

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.