13

を使用してコードをコンパイルしましたが、次の-fsanitize=addressエラーが発生しています。

==53702==ERROR: AddressSanitizer: new-delete-type-mismatch on 0x60300000efe0 in thread T0:
  object passed to delete has wrong type:
  size of the allocated type:   24 bytes;
  size of the deallocated type: 1 bytes.
    #0 0x7fd544b7b0a0 in operator delete(void*, unsigned long) /home/user/objdir/../gcc-6.3.0/libsanitizer/asan/asan_new_delete.cc:108
    #1 0x4010c4 in foo() /home/user/asan.cpp:27
    #2 0x40117e in main /home/user/asan.cpp:33
    #3 0x7fd543e7082f in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x2082f)
    #4 0x400f48 in _start (/home/user/a.out+0x400f48)

コード例:

#include <memory>

struct T {
  T() : v(100) {}
  std::vector<int> v;
};

struct A {};

struct B : public A {
  T t;
};

int main() {
  A *a = new B;
  delete a;

  std::unique_ptr<A> a1 = std::make_unique<B>();

  return 0;
}
4

1 に答える 1

22

C++ を使用すると、基本的な概念さえ理解できていないという感覚が繰り返し発生します。この場合: 継承。

ctors と dtors に print ステートメントを追加すると、両方のポインター (古いスタイルのポインターとスマート ポインター) で ~B ではなく ~A のみが呼び出されることがわかります。これは、A の dtor が仮想ではないためです。

Scott Meyers は次のように述べています

追加してこれを修正します

struct A {
  virtual ~A() = default;
};
于 2017-01-09T16:53:02.947 に答える