gpt4 book ai didi

时间:2019-03-08 标签:c++libconfigambiguousoverload

转载 作者:太空宇宙 更新时间:2023-11-03 10:46:21 31 4
gpt4 key购买 nike

我将要使用 libconfig 编译一个非常简单的“Hello, world”。但是当我编译这样的代码时:

#include <iostream>
#include <libconfig.h++>

libconfig::Config cfg;

std::string target = "World";

int main(void)
{
try
{
cfg.readFile("greetings.cfg");
}
catch (const libconfig::FileIOException &fioex)
{
std::cerr << "I/O error while reading file." << std::endl;
return 1;
}
catch (const libconfig::ParseException &pex)
{
std::cerr << pex.getFile() << " " << pex.getLine()
<< ": " << pex.getError() << std::endl;
return 1;
}

try
{
target = cfg.lookup("target");
}
catch (const libconfig::SettingNotFoundException &nfex)
{
std::cerr << "No target set in configuration file. Using default." << std::endl;
}

std::cout << "Hello, " << target << "!" << std::endl;

return 0;
}

我有这个错误:

example1.cpp: In function 'int main()':
example1.cpp:28: error: ambiguous overload for 'operator=' in 'target = cfg.libconfig::Config::lookup(((const char*)"target"))

/usr/include/c++/4.2/bits/basic_string.h:490: note: candidates are: std::basic_string<_CharT, _Traits, _Alloc>& std::basic_string<_CharT, _Traits, _Alloc>::operator=(const std::basic_string<_CharT, _Traits, _Alloc>&) [with _CharT = char, _Traits = std::char_traits<char>, _Alloc = std::allocator<char>]
/usr/include/c++/4.2/bits/basic_string.h:498: note: std::basic_string<_CharT, _Traits, _Alloc>& std::basic_string<_CharT, _Traits, _Alloc>::operator=(const _CharT*) [with _CharT = char, _Traits = std::char_traits<char>, _Alloc = std::allocator<char>]
/usr/include/c++/4.2/bits/basic_string.h:509: note: std::basic_string<_CharT, _Traits, _Alloc>& std::basic_string<_CharT, _Traits, _Alloc>::operator=(_CharT) [with _CharT = char, _Traits = std::char_traits<char>, _Alloc = std::allocator<char>]

最佳答案

根据 Chapter 4 of the documentation ,在第 19 页,lookup 返回一个 Setting&,而不是一个字符串。

现在,根据第 20 页,Setting 有一堆到各种类型的隐式转换,包括 std::string。这里,在转换为 const char* 的情况下,转换为 std::string 是不明确的,因为 std::string 有构造函数以同等等级接受两者。

这个问题实际上在第 21 页有明确描述,其中建议通过显式转换(或“强制转换”)解决歧义,或者使用成员 c_str() 而不是转换运算符:

target = cfg.lookup("target").c_str();

关于时间:2019-03-08 标签:c++libconfigambiguousoverload,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20744712/

31 4 0