定义一个方法,参数是字符数组,字符, 如果字符在字符数组里面存在.就返回他的第一个索引,不存在,就返回-1;如果这个字符数组==null.
* 抛IllegalArgumentException异常.
public static int getIndex(char[] arr ,char c){
if (arr == null) {
throw new IllegalArgumentException("数组为null");
}
for (int i = 0; i < arr.length; i++) {
if (arr[i] == c) {
return i;
}
}
return -1;
}
|
|