这对你们来说可能很简单,但由于我是 Java 新手,所以我想知道下一部分到底发生了什么?
if (args.length > 0) {
file = args[0];
}
public class DomTest1 {
public static void main(String[] args) {
String file = "test1.xml";
if (args.length > 0) {
file = args[0];
}
}
}