关于 main 函数的命令行参数

About command line arguments of main function(关于 main 函数的命令行参数)
本文介绍了关于 main 函数的命令行参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

它看起来像 int main(int argc, char *argv[]);.我的问题是:

It will look like int main(int argc, char *argv[]);. My questions are:

1 我可以在 argv[] 中添加多少个数组项?

1 How many array items can I add in argv[]?

2 每个 char * 的最大大小是多少?

2 What is MAX size of every char *?

推荐答案

你可以试试:

$ getconf ARG_MAX
2180000

http://pubs.opengroup.org/onlinepubs/007904975/basedefs/limits.h.html

ARG_MAX 是 exec 函数的最大参数长度,包括环境数据.

ARG_MAX is maximum length of argument to the exec functions including environment data.

也就是说,参数的数量或参数的长度没有单独的限制.只有存储所有参数和环境变量所需的总大小限制.

That is, there is no individual limit on the number of arguments or argument's length. Only the limit on total size required to store all the arguments and environment variables.

xargs 使用 计算最大命令行长度sysconf(_SC_ARG_MAX); 生成的值与 getconf ARG_MAX 报告的值相同.

xargs figures out maximum command line length using sysconf(_SC_ARG_MAX); which yields the same value as reported by getconf ARG_MAX.

在 Linux 上,命令行参数和环境变量被放入新进程的堆栈中.因此,进程/线程最大堆栈大小是最终上限.Linux 特定的限制是硬编码在内核中:

On Linux command line arguments and environment variables are put into new process' stack. So, the process/thread maximum stack size is the ultimate upper bound. Linux-specific limits are hardcoded in the kernel:

#define MAX_ARG_STRLEN (PAGE_SIZE * 32)
#define MAX_ARG_STRINGS 0x7FFFFFFF

这篇关于关于 main 函数的命令行参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Rising edge interrupt triggering multiple times on STM32 Nucleo(在STM32 Nucleo上多次触发上升沿中断)
How to use va_list correctly in a sequence of wrapper functions calls?(如何在一系列包装函数调用中正确使用 va_list?)
OpenGL Perspective Projection Clipping Polygon with Vertex Outside Frustum = Wrong texture mapping?(OpenGL透视投影裁剪多边形,顶点在视锥外=错误的纹理映射?)
How does one properly deserialize a byte array back into an object in C++?(如何正确地将字节数组反序列化回 C++ 中的对象?)
What free tiniest flash file system could you advice for embedded system?(您可以为嵌入式系统推荐什么免费的最小闪存文件系统?)
Volatile member variables vs. volatile object?(易失性成员变量与易失性对象?)