getopt_long问题

时间:2011-09-20 19:36:00

标签: c command-line-arguments getopt-long

我在解析我正在编写的程序中的参数时遇到问题,代码如下:

void parse_args(int argc, char** argv)
{
    char ch;
    int index = 0;

    struct option options[] = {       
        { "help", no_argument, NULL, 'h'   },      
        { "port", required_argument, NULL, 'p'  },      
        { "stop", no_argument, NULL, 's' },         
        { 0,    0,    0,    0   }       
    };

    while ((ch = getopt_long(argc, argv, "hp:s", options, &index)) != -1) {
        switch (ch) {
            case 'h':   
                printf("Option h, or --help.\n");
                break;
            case 's':
                printf("Option s, or --stop.\n");

                break;
            case 'p':
                printf("Option p, or --port.\n");
                if (optarg != NULL)
                    printf("the port is %s\n", optarg);
                break;
            case '?':
                printf("I don't understand this option!!!\n");

            case -1:  
                break;
            default:
                printf("Help will be printed very soon -:)\n");
        }
    }
}

当我运行我的程序时,我得到了一些奇怪的输出:

./Server -p 80
Option p, or --port.
the port is 80

./Server -po 80
Option p, or --port.
the port is o

./Server -por 80
Option p, or --port.
the port is or

./Server -hoho
Option h, or --help.
Server: invalid option -- o
I don't understand this option!!!

1 个答案:

答案 0 :(得分:7)

我认为混淆源于对长期选择的误解。基本上,只有在使用--表单时才会进行部分字符串匹配。当您仅使用-时,它将回退到标准解析,因此-por 80-p or 80匹配(如同,选项为-p且参数为or )。使用--po--por尝试相同的操作。至于帮助,请尝试--he--hel