gpt4 book ai didi

C++ 编译错误(REPAST 库)

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:33:13 25 4
gpt4 key购买 nike

我正在从事 Agent 建模项目,并决定为此使用 repast。我之前已经预装了一堆库并下载了 Repast 源代码并尝试将其包含在项目中。但是突然出现我无法理解的错误。

error: no match for ‘operator+’ in ‘std::operator+(const std::basic_string<_CharT, _Traits, _Alloc>&, const _CharT*) [with _CharT = char, _Traits = std::char_traits, _Alloc = std::allocator](((const char*)"_")) + boost::filesystem3::path::filename() const()’

代码:

NCDataSet::NCDataSet(std::string file, const Schedule& schedule) :
file_(file), schedule_(&schedule), start(0), open(true)
{
rank = RepastProcess::instance()->rank();
if (rank == 0) {
fs::path filepath(file);
if (!fs::exists(filepath.parent_path())) {
fs::create_directories(filepath.parent_path());
} else if (fs::exists(filepath)) {
string ts;
repast::timestamp2(ts);
fs::path to(filepath.parent_path() / (ts + "_" + filepath.filename()));
fs::rename(filepath, to);
}
}
}
ERROR LINE: fs::path to(filepath.parent_path() / (ts + "_" + filepath.filename()));

谢谢!!!

最佳答案

该错误表明它无法匹配operator+,即您正在尝试附加两个无效类型。

看起来 path::filename 没有返回 std::string。

class path {
// ...
path filename() const;
// ...
};

将中缀运算符视为保留运算符左侧的类型是合理的。在这种情况下,std::string 对 boost 或 filesystem::path 一无所知。

因此您可能需要将有问题的行更改为如下内容:

fs::path to(filepath.parent_path() / (ts + "_" + filepath.filename().string() ));

我发现当一堆内联操作如何导致错误不是很明显时,将所有内容分开到它自己的行上是一个很好的做法。在这种情况下,它甚至可以使代码更清楚地表达您的意图。

std::string old_filename(filepath.filename().string());
std::string new_filename = ts +"_"+ old_filename;
fs::path to( filepath.parent_path() / new_filename);

关于C++ 编译错误(REPAST 库),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9368906/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com