QStringList QCoreApplication::arguments () [static]
Returns the list of command-line arguments.
arguments().at(0) is the program name, arguments().at(1) is the first argument, and arguments().last() is the last argument.
Calling this function is slow - you should store the result in a variable when parsing the command line.
……
返回的是命令行传递进来的参数。