這對你們來說可能很簡單,但是因爲我是java的新手,所以我想知道 究竟是什麼?Exacly(args.length> 0)是什麼意思?
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];
}
}
}
感謝您的信息 – Bitopan