这让我觉得我没有正确使用指针。
主文件
#include <iostream>
#include "room.h"
void initializeRooms(std::vector<Room*>& rooms);
int main() {
std::vector<Room*> rooms;
initializeRooms(rooms);
Room* r = rooms[0];
std::cout << "You are in room " << r->getName() << "\n";
return 0;
}
void initializeRooms(std::vector<Room*>& rooms) {
Room roomOne {"roomOne"};
Room roomTwo {"roomTwo"};
Exit exit { &roomOne, &roomTwo };
roomOne.addExit(&exit);
rooms.push_back(&roomOne);
rooms.push_back(&roomTwo);
}
退出.cpp
class Room;
struct Exit {
Room* room_one;
Room* room_two;
};
房间.h
#ifndef ROOM_H
#define ROOM_H
#include <string>
#include <vector>
#include "exit.cpp"
class Room {
private:
std::string name;
std::vector<Exit*> exits;
public:
Room(std::string n): name{n} {
}
void addExit(Exit* e);
std::string& getName();
};
#endif
房间.cpp
#include "room.h"
void Room::addExit(Exit* e) {
exits.push_back(e);
}
std::string& Room::getName() {
return name;
}
所以在主文件中,当调用 cout 时,当我运行编译文件时,我只会看到一个不断输出的空行循环。现在保持简单并使用带有clang的makefile
all: build
build: main.o exit.o room.o
clang++ -std=c++11 main.o exit.o room.o -o simplegame
main.o: main.cpp
clang++ -std=c++11 -c main.cpp
exit.o: exit.cpp
clang++ -std=c++11 -c exit.cpp
room.o: room.cpp
clang++ -std=c++11 -c room.cpp
clean:
rm -rf *o simplegame