0

我正在尝试在我的代码中实现命令行选项。出于某种原因,我的 -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;
        }
    }
}
4

1 回答 1

0

你不应该打电话给 getopt("a:b:c:") 吗?我想你已经指定了 c,当它到达那个点时 optarg 将为空。

于 2012-07-13T16:42:46.200 回答