Destructors for C++ Interface-like classes

前端 未结 6 1008
甜味超标
甜味超标 2020-12-30 23:20

Starting to use PC-Lint on an existing code base (fear and trepidation).

One thing that it complains about is the following:

 class IBatch
 {
 public         


        
6条回答
  •  灰色年华
    2020-12-31 00:24

    A class with virtual functions but no virtual destructor is suspect, and most likely wrong: see a good and more precise explanation here.

提交回复
热议问题