我试图在 double 数组中找到 double 的索引,它适用于字符串和整数数组,但不适用于 double。double[] a = {1.1,2.2,3.3};System.out.println(Arrays.asList(a).indexOf(1.1));它不断返回-1。 查看完整描述