如何检查命令行参数是否在新行上?
参数示例:
3
1 2 4
3 3
代码:
public static void main(String[] args){
for (int index = 0; index < args.length; ++index)
{
//if arg is on new line
System.out.println("args[" + index + "]: " + args[index]);
}
}
答案 0 :(得分:0)
您通常无法使用for each
或while
循环并使用readLine()
类上的Console
读取行,直到您达到某个标记值。< / p>
点击键盘上的[Enter]将运行该程序,因此您无法添加新行作为输入,除非您使用我上述的机制。