正确的参数数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正确的参数数相关的知识,希望对你有一定的参考价值。

Tests whether the script has been invoked with the correct number of parameters.
  1. E_WRONG_ARGS=85
  2. script_parameters="-a -h -m -z"
  3. # -a = all, -h = help, etc.
  4. if [ $# -ne $Number_of_expected_args ]
  5. then
  6. echo "Usage: `basename $0` $script_parameters"
  7. # `basename $0` is the script's filename.
  8. exit $E_WRONG_ARGS
  9. fi

以上是关于正确的参数数的主要内容,如果未能解决你的问题,请参考以下文章

php mysqi bind_param 变量数与准备好的语句中的参数数不匹配[重复]

call_user_func_array() - 警告:mysqli_stmt::bind_param():变量数与准备语句中的参数数不匹配

通过导航组件在底部导航片段之间传递数据

如何正确地将多个片段添加到片段过渡?

addToBackStack 没有导航回正确的片段

再探虚函数