3

我知道这个问题已被多次询问,但我仍然无法弄清楚

#include<stdio.h>
#include<getopt.h>
int ch;
int queue_time=60;
int thread_num=4;
char *scheduling_algo="FCFS";
extern char *optarg;
int port=8080;
int debug_flag,h_flag,l_flag;
int main(int argc,char *argv[])
{
  while ((ch = getopt(argc, argv, "dhlprtns")) != -1)
switch(ch)
{
  case 'd':
    debug_flag=atoi(optarg);        /* print address in output */
    break;
  case 'h':
    h_flag=atoi(optarg);
    break;
  case 'l':
    l_flag=atoi(optarg);; 
    break;
  case 'p':
    port = atoi(optarg);
    break;
case 'r':
    printf("%s",optarg); 
    break;
case 't':
    queue_time = atoi(optarg);
    break;
case 'n':
    thread_num = atoi(optarg);
    break;
case 's':
    scheduling_algo = optarg;
    break;
default:
    printf("nothing was passed");
}

    printf("%d",queue_time);
    printf("%d",debug_flag);
    printf("%d",h_flag);
    printf("%d",l_flag);
}   

我正在使用以下命令执行我的程序

./a.out -d -h -l -t 55

我收到核心转储错误。我在谷歌上阅读了一些例子,但我仍然面临这个问题。有人可以帮忙吗?

4

2 回答 2

13

您需要阅读 getopt() 的手册页

  while ((ch = getopt(argc, argv, "dhlprtns")) != -1)
                                   ^^^^^^^^

这与您使用参数的方式不符。您希望在需要参数的标志之后使用冒号“:”。在您的代码中,“d”后面没有冒号,但您似乎想要一个值:

  case 'd':
    debug_flag=atoi(optarg);        /* print address in output */
    break;

所以发生的事情是你在打电话atoi(0),这是段错误。

这是手册页中的示例,请注意“b”后面不跟冒号,而“f”是冒号。

#include <unistd.h>
 int bflag, ch, fd;

 bflag = 0;
 while ((ch = getopt(argc, argv, "bf:")) != -1) {
         switch (ch) {
         case 'b':
                 bflag = 1;
                 break;
         case 'f':
                 if ((fd = open(optarg, O_RDONLY, 0)) < 0) {
                         (void)fprintf(stderr,
                             "myname: %s: %s\n", optarg, strerror(errno));
                         exit(1);
                 }
                 break;
         case '?':
         default:
                 usage();
         }
 }
 argc -= optind;
 argv += optind;
于 2013-10-30T01:30:33.213 回答
1

这可能对其他人有用:如果您将选项字母指定为既不带冒号又带冒号,例如“dabcd:e” - 在这种情况下,“d”出现带和不带冒号......然后使用该选项字母。

看来 getopt 及其变体不检查此冲突并返回错误!

于 2017-07-19T10:27:12.920 回答