Is delete this allowed?

后端 未结 10 1498
-上瘾入骨i
-上瘾入骨i 2020-11-22 03:40

Is it allowed to delete this; if the delete-statement is the last statement that will be executed on that instance of the class? Of course I\'m sure that the ob

10条回答
  •  爱一瞬间的悲伤
    2020-11-22 04:16

    The C++ FAQ Lite has a entry specifically for this

    • https://isocpp.org/wiki/faq/freestore-mgmt#delete-this

    I think this quote sums it up nicely

    As long as you're careful, it's OK for an object to commit suicide (delete this).

提交回复
热议问题