一个C/C++ 命令行参数处理的程序
发布日期:2021-05-07 23:35:30 浏览次数:13 分类:原创文章

本文共 1280 字,大约阅读时间需要 4 分钟。

最近在学习K&R C中讲解的关于UNIX系统下运行命令的参数的讲解,其中可选参数  -x  -n  可以被-xn取代。

这种处理方法的代码非常精练,这里记录下来以后用得上


代码如下  这是一个查找输入的行中是否含有匹配字符串的命令 并且有 -x -n两个可选参数。

vs2015和gcc下编译通过

#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>#include <string.h>#define MAXLINE		1000int getline_s(char *line, int max);/* print the line match the pattern with * the first input parameter. * support the optional parameter -x -n or -xn * before the pattern */int main(int argc, char* argv[]){	char line[MAXLINE];	long lineno = 0;	int c, except = 0, number = 0, found = 0;	while (--argc > 0 && (*++argv)[0] == '-')	{		while (c = *++argv[0])		{			switch (c)			{			case 'x':				except = 1;				break;			case 'n':				number = 1;				break;			default:				printf("find: illegal optional %c\n", c);				argc = 0;				found = -1;				break;			}		}	}	if (argc != 1)		printf("Usage: find -x -n pattern\n");	else	{		while (getline_s(line, MAXLINE) > 0)		{			lineno++;			if ((strstr(line, *argv) != NULL) != except)			{				if (number)					printf("%ld:", lineno);				printf("%s", line);				found++;			}		}	}	return found;}int getline_s(char *s, int max){	int c;	char *p = s;	while ((c = getchar()) != EOF && c != '\n')		*s++ = c;	if (c == '\n')		*s++ = c;	*s = '\0';	return s - p;}


编译好以后 输入

./a.out -x -n test          可选参数


./a.out  test     忽略参数


./a.out -xn   组合参数


上一篇:使用ffmpeg 对视频做resize
下一篇:C/C++浮点数的存储方式 IEEE-754标准,以及实现一个ftoa函数将浮点数转换为字符串

发表评论

最新留言

第一次来,支持一个
[***.219.124.196]2025年03月25日 15时42分08秒