中英互译
argument count
基本释义
- 参数数量:表示函数或方法所需的参数个数。
双语例句
- Note here that the argc variable (argument count) is implicit, because the length of the argv list is known.请注意这里的argc变量(参数数量)是隐式的,因为argv列表的长度已经知道。
- Note that when you try to access an argument of a class member function the actual argument count starts from 2 instead of 1.注意,在访问类成员函数的参数时,实际的参数编号从 2 而不是从 1 开始。
- In this definition, argc is the number of arguments passed in (argument count) and argv is an array of strings representing options passed in from the command line (argument vector).在这个定义中,argc是传递进来的参数的个数(参数数量),而argv是一个字符串数组,代表从命令行传递进来的参数(参数向量)。