我正在尝试在我的代码中实现命令行选项。出于某种原因,我的 -a 选项可以正常工作,但我的 -c 选项不能正常工作,即使它们基本相同。当我尝试使用 -c 选项运行我的代码时,我收到以下消息。
terminate called after throwing an instance of 'std::logic_error'
what(): basic_string::_S_construct NULL not valid
Aborted
下面是我的代码。
int c;
std::string config = def+std::string("SamplesConfig.xml");
std::string cal = def+std::string("calibration.bin");
while ((c = getopt(argc, argv, "a:c"))>=0)
{
switch(c)
{
case 'a':
{
config = std::string(optarg);
printf("%s", (char *)config.c_str());
break;
}
case 'c':
{
cal = std::string(optarg);
printf("%s", (char *)cal.c_str());
break;
}
default:
{
break;
}
}
}