Constructors, Destructors and Object Lifetime (Contd.) (Lecture 24)

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ธ.ค. 2024

ความคิดเห็น • 5

  • @manmohankrishna2407
    @manmohankrishna2407 5 ปีที่แล้ว +3

    8:37 the program on the right should use in the deconstructor code "delete [] data_", and not "delete data_" just the way it was done on the program in the left to be able to delete the whole dynamically created array.

  • @hrushikeshtawde360
    @hrushikeshtawde360 7 ปีที่แล้ว +4

    Thank you so much sir!

  • @iloveuniverse143
    @iloveuniverse143 5 ปีที่แล้ว

    thank you NPTEL team

  • @joseponce6250
    @joseponce6250 3 ปีที่แล้ว

    thanks!!

  • @AlexS-fv7ln
    @AlexS-fv7ln 4 ปีที่แล้ว +1

    To invoke a destructor explicitly need to call s.~Stack(), but not Stack::~Stack(&s).