如果我通过命令行args [0]和args [1]提供两个参数。如何单独检查其中一个参数是否为空/空?
答案 0 :(得分:-1)
这是一个简单的例子Sam:
if (args.length > 0) {
if (!args[0].isEmpty()) {
// Do whatever with arg[0] (the first argument)
}
if (!args[1].isEmpty()) {
// Do whatever with arg[1] (the second argument)
}
}