我想知道您将如何提前退出方法。如果这是一个 void 类型,我只会“返回”,但是由于这是一个 int 类型,它希望我返回一个整数。如何在不返回任何整数的情况下返回 main。谢谢。
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
}