请在一个类中编写一个方法,这个方法搜索一个字符数组中是否存在某个字符,如果存在,则返回这个字符在字符数组中第一次出现的位置(序号从0开始计算),否则,返回-1。要搜索的字符数组和字符都以参数形式传递传递给该方法,如果传入的数组为null,应抛出IllegalArgumentException异常。在类的main方法中以各种可能出现的情况测试验证该方法编写得是否正确,例如,字符不存在,字符存在,传入的数组为null等 
             我已经做好,想参考一下其他答案!

解决方案 »

  1.   

    public class  SearchChar
    {
    public int search(char[] cs,char c)
    {
    if(cs==null)
    throw new IllegalArgumentException("给定的数组为null!");
    String s=new String(cs);
    return s.indexOf(c);
    }
    public static void main(String[] args) 
    {
    SearchChar sc=new SearchChar();
    System.out.println(sc.search("hello world".toCharArray(),'e'));//存在
    System.out.println(sc.search("hello world".toCharArray(),'a'));//不存在
    System.out.println(sc.search(null,'a'));//数组为null
    }
    }