我不确定我失踪的地方。我想从命令行中捕获一些字符。我正在使用getopt但不知道如何从optarg复制。请帮帮我,我不太清楚c。中的字符/字符串处理。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
main(int argc , char *argv[]) {
char *file;
int opt;
while ( ( opt = getopt(argc, argv, "f:") ) != -1 ){
switch(opt){
case 'f':
file=(char *) malloc(2);
strcpy(file,optarg);
printf("\nValue of file is %c\n",file);
break;
default :
return(1);
}
}
return(0);
}
答案 0 :(得分:4)
要修复@claptrap建议的错误,请替换:
file=(char *) malloc(2);
strcpy(file,optarg);
更安全:
file = strdup(optarg);
它会自动为你分配和复制字符串,无论它有多长。你有已经包含的string.h中定义的strdup。
使用文件字符串后,应使用以下命令将其从内存中释放:
free(file);
Strdup manpage。还要检查strncpy函数,它比strcpy更安全,因为它知道在溢出之前它可以复制到目标缓冲区中的字符数。