您应该注意编译器警告消息:
g++ -std=c++17 -fPIC -g -Wall -Wextra -Wwrite-strings -Wno-parentheses -Wpedantic -Warray-bounds -Weffc++ 41120443.cpp -o 41120443
41120443.cpp:1:15: warning: extra tokens at end of #include directive
#include <set>;
^
41120443.cpp:7:7: warning: ‘class Room’ has pointer data members [-Weffc++]
class Room {
^~~~
41120443.cpp:7:7: warning: but does not override ‘Room(const Room&)’ [-Weffc++]
41120443.cpp:7:7: warning: or ‘operator=(const Room&)’ [-Weffc++]
41120443.cpp: In constructor ‘Room::Room()’:
41120443.cpp:12:5: warning: ‘Room::door1’ should be initialized in the member initialization list [-Weffc++]
Room(){}
^~~~
41120443.cpp:12:5: warning: ‘Room::door2’ should be initialized in the member initialization list [-Weffc++]
41120443.cpp: In destructor ‘Room::~Room()’:
41120443.cpp:15:16: warning: possible problem detected in invocation of delete operator: [-Wdelete-incomplete]
delete door1;
^~~~~
41120443.cpp:15:16: warning: invalid use of incomplete type ‘class Door’
41120443.cpp:5:7: note: forward declaration of ‘class Door’
class Door; // Forward declaration
^~~~
41120443.cpp:15:16: note: neither the destructor nor the class-specific operator delete will be called, even if they are declared when the class is defined
delete door1;
^~~~~
41120443.cpp:17:16: warning: possible problem detected in invocation of delete operator: [-Wdelete-incomplete]
delete door2;
^~~~~
41120443.cpp:17:16: warning: invalid use of incomplete type ‘class Door’
41120443.cpp:5:7: note: forward declaration of ‘class Door’
class Door; // Forward declaration
^~~~
41120443.cpp:17:16: note: neither the destructor nor the class-specific operator delete will be called, even if they are declared when the class is defined
delete door2;
^~~~~
41120443.cpp: At global scope:
41120443.cpp:22:7: warning: ‘class Door’ has pointer data members [-Weffc++]
class Door {
^~~~
41120443.cpp:22:7: warning: but does not override ‘Door(const Door&)’ [-Weffc++]
41120443.cpp:22:7: warning: or ‘operator=(const Door&)’ [-Weffc++]
41120443.cpp: In constructor ‘Door::Door(Room*, Room*)’:
41120443.cpp:27:5: warning: ‘Door::roomA’ should be initialized in the member initialization list [-Weffc++]
Door(Room* roomA, Room* roomB) {
^~~~
41120443.cpp:27:5: warning: ‘Door::roomB’ should be initialized in the member initialization list [-Weffc++]
41120443.cpp: In constructor ‘World::World()’:
41120443.cpp:56:5: warning: ‘World::rooms’ should be initialized in the member initialization list [-Weffc++]
World() {
^~~~~
和 Valgrind 输出:
valgrind ./41120443
==2864== Memcheck, a memory error detector
==2864== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
==2864== Using Valgrind-3.12.0.SVN and LibVEX; rerun with -h for copyright info
==2864== Command: ./41120443
==2864==
==2864== Conditional jump or move depends on uninitialised value(s)
==2864== at 0x4C2C291: operator delete(void*) (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==2864== by 0x108BC3: Room::~Room() (41120443.cpp:17)
==2864== by 0x108D67: World::~World() (41120443.cpp:68)
==2864== by 0x108B65: main (41120443.cpp:75)
==2864==
==2864== Conditional jump or move depends on uninitialised value(s)
==2864== at 0x4C2C291: operator delete(void*) (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==2864== by 0x108BA8: Room::~Room() (41120443.cpp:15)
==2864== by 0x108D67: World::~World() (41120443.cpp:68)
==2864== by 0x108B65: main (41120443.cpp:75)
==2864==
==2864== Invalid free() / delete / delete[] / realloc()
==2864== at 0x4C2C2DB: operator delete(void*) (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==2864== by 0x108BC3: Room::~Room() (41120443.cpp:17)
==2864== by 0x108D67: World::~World() (41120443.cpp:68)
==2864== by 0x108B65: main (41120443.cpp:75)
==2864== Address 0x5a82e00 is 0 bytes inside a block of size 16 free'd
==2864== at 0x4C2C2DB: operator delete(void*) (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==2864== by 0x108BA8: Room::~Room() (41120443.cpp:15)
==2864== by 0x108D67: World::~World() (41120443.cpp:68)
==2864== by 0x108B65: main (41120443.cpp:75)
==2864== Block was alloc'd at
==2864== at 0x4C2B21F: operator new(unsigned long) (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==2864== by 0x108CCE: World::World() (41120443.cpp:63)
==2864== by 0x108B54: main (41120443.cpp:75)
明智地使用智能指针可以让自己的生活更轻松:
#include <memory>
#include <set>
class Door; // Forward declaration
struct Room {
std::shared_ptr<Door> door1 = {};
std::shared_ptr<Door> door2 = {};
~Room();
};
struct Door {
const std::weak_ptr<Room> roomA;
const std::weak_ptr<Room> roomB;
Door(std::shared_ptr<Room> roomA, std::shared_ptr<Room> roomB)
: roomA(roomA),
roomB(roomB)
{
roomA->door1 = roomB->door1 = std::shared_ptr<Door>{this};
}
~Door() = default;
};
// Now that Door is complete, we can define ~Room
Room::~Room() = default;
struct World {
std::set<std::shared_ptr<Room>> rooms = {};
World() {
// Set up two rooms and link them using a door
auto newRoom = std::make_shared<Room>();
rooms.insert(newRoom);
auto anotherNewRoom = std::make_shared<Room>();
rooms.insert(anotherNewRoom);
new Door(newRoom, anotherNewRoom);
}
~World() = default;
};
int main() {
World world;
return 0;
}
这可以干净地构建和运行:
g++ -std=c++17 -fPIC -g -Wall -Wextra -Wwrite-strings -Wno-parentheses -Wpedantic -Warray-bounds -Weffc++ 41120443.cpp -o 41120443
valgrind ./41120443
==3254== Memcheck, a memory error detector
==3254== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
==3254== Using Valgrind-3.12.0.SVN and LibVEX; rerun with -h for copyright info
==3254== Command: ./41120443
==3254==
==3254==
==3254== HEAP SUMMARY:
==3254== in use at exit: 0 bytes in 0 blocks
==3254== total heap usage: 7 allocs, 7 frees, 72,952 bytes allocated
==3254==
==3254== All heap blocks were freed -- no leaks are possible
==3254==
==3254== For counts of detected and suppressed errors, rerun with: -v
==3254== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)