为什么这段代码返回-1?

时间:2017-08-02 17:40:18

标签: java arrays

我有一些代码,第33行返回-1,因为它无法找到值。但为什么不找到它?!我认为这可能与char []有关,但我在这里确实不太确定。

也可能是因为第31行(int temp)但我真的不知道。

import java.util.Arrays;
import java.util.HashMap;
import java.util.Scanner;

class Main {

public static void main(String args[]) {

HashMap<Integer, String> map = new HashMap<Integer, String>();

System.out.println("Enter your string to cipher: ");

Scanner s =  new Scanner(System.in);
String str = s.nextLine();

char[] letters = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
Integer[] numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25};

if (str instanceof String) {
    System.out.println("Input received: OK.");
} else {
    System.out.println("Error! You cannot input numbers. Exiting program...");
    System.exit(1);
}

for (int i = 0; i < str.length(); i++) {
    char l = str.charAt(i);

    System.out.println(l);

    int temp = Arrays.asList(letters).indexOf(l);

    System.out.println(temp);


    }


  }

}

1 个答案:

答案 0 :(得分:1)

更改变量的类型&#39;字母&#39;到Character[],它就可以了。

Bonus小优化建议:将此行int temp = Arrays.asList(letters).indexOf(l)移到循环之外,因为您要在每次迭代时创建一个列表。

还要决定是否要使用数组或char[]等数组

来使用泛型集合