我已经搜索了宇宙最远的地方(也就是互联网),但没有找到关于如何解决我的问题的任何提示。所以我来找你。
我正在尝试遍历包含字符串对的列表。此列表是数组中的 20 个列表之一。这是我当前的代码:
记录.h:
#ifndef LOGGING_H
#define LOGGING_H
#include <iostream>
#include <list>
#include <string>
class logging
{
public:
void log(int,std::string,std::string);
void draw();
logging();
virtual ~logging();
private:
int displaylevel=0;
std::list<std::pair<std::string,std::string>> logd[20];
};
#endif // LOGGING_H
记录.cpp:
#include "logging.h"
#include <list>
#include <string>
#include <iostream>
logging::logging(){
//for future use
}
void logging::log(int level,std::string category, std::string entry) {
int thislevel;
for (thislevel=level-1;(thislevel>-1);thislevel--){
std::pair <std::string,std::string> newentry;
newentry = std::make_pair (category,entry);
logd[thislevel].push_front(newentry);
}
}
void logging::draw(){
//draw console on the screen using opengl
std::list<std::pair<std::string,std::string>>* log = &(logd[displaylevel]);
std::list<std::pair<std::string,std::string>>::iterator logit;
for ( logit = (*log).begin() ; logit != (*log).end() ; logit++ ) {
std::cout << (*logit).first() << std::endl << (*logit).second() << std::endl;
}
}
logging::~logging() {
//Deconstructor for log class (save log to file?)
}
这个想法是,如果记录了一个重要性为 5 的事件,那么它将被放入列表 0、1、2、3 和 4。这样就可以在游戏中显示各种详细级别(如果控制台/日志打开),只需简单地显示对应于该详细级别的列表(由 displaylevel 定义)。但是我似乎无法正确遍历列表,它不断抛出不匹配的调用 std::basic_string 错误。任何帮助表示赞赏,我对 C++ 很陌生。