c ++ getopt()参数识别

时间:2018-05-13 06:48:13

标签: c++ getopt

您好我正在测试可以找到here的默认getopt()程序。

当我运行此代码并输入例如myProgram -c -b. -c时,它需要-b作为参数。正如我在阅读getopt()时所理解的那样,以-开头的字符被视为特例。我可以获取getopt()而不是将-b作为参数-c运行-c而不使用arg,然后转而-b吗?

while ((c = getopt(argc, argv, "abc:")) != -1) 
    {
    char test = 111;
    std::cout << test << std::endl;
    switch (c) {
    case 'a':
        aflag = 1; break;
    case 'b':
        bflag = 1; break;
    case 'c':
    {
        cvalue = optarg;
        break;
    }
    case '?':
        if (isprint(optopt))
        {
            fprintf(stderr, "Unknown option `-%c'.\n", optopt);
        }
        else
            fprintf(stderr, "Unknown option character `\\x%x'.\n", optopt);
        return 1;
    default:
        abort();
    }

0 个答案:

没有答案