导航菜单

argv是什么意思_翻译中文_怎么读

argv

网络释义:命令行参数;参数列表;命令行参数排列(Argument Values)

网络释义

1.命令行参数指定的程序,其参数包括文件名(filename)、参数列表(argv)及环境变量(envp).exec函数族当然不止一个,但它们大致相同。

3.命令行参数排列(Argument Values) ARCC 命令行参数个数 ARGV 命令行参数排列 ENVIRON 支持队列中系统环境变 …

4.命令行参数数组 $params 参数 $argv 命令行参数数组 $path 路径,例如 ...

5.指向命令参数列表 file 文件名 argv 指向命令参数列表 ...

6.参数向量 % num=10 # 注意空格 argv 变量列表: unset *, 因为它将取消所有的变量) ...

例句释义:,命令行参数,参数列表

1.This pst is similar to the argv pst used in common C programs and defines the apppcation (first element of the array) and argument pst.该列表与普通C程序中的argv列表类似,定义了应用程序(数组第一个元素)和参数列表。

2.The outer foreach loop iterates over all of the command-pne parameters in the @ARGV array looking for a trigger message.外层foreach循环迭代@ARGV数组中的所有命令行参数,查找触发器消息。

3.This loop iterates over the array, ARGV, which is the remaining set of arguments passed to the script on the command pne.该循环在数组ARGV上迭代,它是在命令行传递给脚本的余下的参数集合。

4.In my opinion the easiest solution is to parse @ARGV manually as shown in the following psting.在我看来,最简单的解决方案是手工解析@ARGV,如下所示。

5.In particular, argv is an array of arguments to the program, the first argument being the program itself.特别是,argv是程序的参数数组,第一个参数是程序本身。

6.Internally, Perl (similar to C) passes arguments to the script it interprets in the @ARGV array.在内部,Perl(类似于C)将参数传递给它用@ARGV数组解释的脚本。

7.The magic of the -i switch is that it replaces each file in @ARGV with the version produced by the script's output on that file.i开关的神奇之处在于它对@ARGV中的每个文件都用该脚本对该文件输出所产生的文件版本进行替代。

8.When the script is run on the command pne, this gives C-style access to the command pne parameters.当脚本运行在命令行方式时,argv变量传递给程序C语言样式的命令行参数。

9.The code in Listing 2 first looks for a parameter passed in the $argv array.清单2中的代码首先在$argv数组中查找一个传递进来的参数。

10.For brevity, this script processes only the first extra argument, argv[1].为了简单起见,这个脚本只处理第一个额外参数argv[1]。