当我运用Algorithms的示例代码(由Sedgewick提供)时,我试图运行它。 Eclipse中的执行失败,并显示以下错误消息: 错误:在Binary类中找不到主要方法,请将main方法定义为: public static void main(String [] args)
DrJava表示:
java.lang.ArrayIndexOutOfBoundsException: 0
at BinarySearch.main(BinarySearch.java:61)
我认为此行In in = new In(args[0]);
一定有问题。
源代码是:
import java.util.Arrays;
public class BinarySearch {
public static int rank(int key, int[] a) {
int lo = 0;
int hi = a.length - 1;
while (lo <= hi) {
// Key is in a[lo..hi] or not present.
int mid = lo + (hi - lo) / 2;
if (key < a[mid]) hi = mid - 1;
else if (key > a[mid]) lo = mid + 1;
else return mid;
}
return -1;
}
public static void main(String[] args) {
// read in the integers from a file
In in = new In(args[0]);
int[] whitelist = in.readAllInts();
// sort the array
Arrays.sort(whitelist);
// read key; print if not in whitelist
while (!StdIn.isEmpty()) {
int key = StdIn.readInt();
if (rank(key, whitelist) == -1)
StdOut.println(key);
}
}
}
PS:“In”,“StdOut”和“StdIn”是三个外部库,并且已成功导入。 第一个错误显示中的第61行是“In in = new In(args [0]);”
.readAllInts()中定义的部分如下:
/**
* Read all ints until the end of input is reached, and return them.
*/
public int[] readAllInts() {
String[] fields = readAllStrings();
int[] vals = new int[fields.length];
for (int i = 0; i < fields.length; i++)
vals[i] = Integer.parseInt(fields[i]);
return vals;
}
答案 0 :(得分:0)
使用
访问第一个命令行参数时args[0]
当没有参数时,你的程序会以你描述的方式死亡。
因此,请始终检查您期望的参数是否存在:
if (args.length == 0) {
System.err.println("Please supply command line arguments!");
}
else {
// your program logic here
}