A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. package com.itheima;
  2. import static com.itheima.MyCharArray.*;
  3. /**
  4. * 在一个类中编写一个方法,这个方法搜索一个字符数组中是否存在某个字符,
  5. * 如果存在,则返回这个字符在字符数组中第一次出现的位置(序号从0开始计算),
  6. * 否则,返回-1。要搜索的字符数组和字符都以参数形式传递传递给该方法。
  7. *  @author Administrator
  8. *
  9. */
  10. public class Test {

  11.         public static void main(String[] args) {
  12.                 char[] array="public static void main(String[] args)".toCharArray();
  13.                 System.out.println(MyCharArray.indexOfChars(array, 'v'));
  14.                 System.out.println(MyCharArray.indexOfChars(array, 'e'));
  15.                 System.out.println(MyCharArray.indexOfChars(array, 'j'));
  16.                 System.out.println(MyCharArray.indexOfChars(array, 'K'));
  17.                 System.out.println(MyCharArray.indexOfChars(array, 'l'));
  18.                 System.out.println(indexOfChars(null, 'e'));
  19.         }

  20. }
  21. class MyCharArray{
  22. /*        public static int indexOfChars(String str,char ch){
  23.                 if (str==null) {
  24.                         throw new IllegalArgumentException();
  25.                 }
  26.                 return indexOfChars(str.toCharArray(), ch);
  27.         }*/
  28.         public static int indexOfChars(char[] array,char ch){
  29.                 if (array==null) {
  30.                         throw new IllegalArgumentException();
  31.                 }
  32.                 for (int i = 0; i < array.length; i++) {
  33.                         if (ch==array[i]) {
  34.                                 return i;
  35.                         }
  36.                 }
  37.                 return -1;
  38.         }
  39. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
EYE_SEE_YOU + 1

查看全部评分

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马