メソッドを早期に終了するにはどうすればよいのだろうと思っていました。これが void 型なら「返す」だけでいいのですが、これは int 型なので整数を返してほしい。整数を返さずにメインに戻るにはどうすればよいですか。ありがとう。
public static int binarysearch(String[] myArray, String target, int first, int last)
{
int index;
if (first > last)
{
index = -1;
System.out.println("That is not in the array");
// Return to main here
}