问答详情
源自:2-4 Java 中的 String 类常用方法 Ⅱ

我的答案用getBytes

public class HelloWorld {

   public static void main(String[] args) {

// 定义一个字符串

String s = "aljlkdsflkjsadjfklhasdkjlflkajdflwoiudsafhaasdasd";

       char a='a';

       byte b=(byte)a;

       

       // 出现次数

int num = 0;

       byte[] c=s.getBytes();

       

        // 循环遍历每个字符,判断是否是字符 a ,如果是,累加次数

for (byte i:c)                        

{

           // 获取每个字符,判断是否是字符a

if (i==b                 ) {

               // 累加统计次数

num++; 

}

}

System.out.println("字符a出现的次数:" + num);

}

}



提问者:强人哥哥 2015-03-29 21:31

个回答

  • 玄鉴
    2016-06-15 09:56:43

    得到的i是int类型,a是字符类型,也可以==比较吗??谢谢

  • MasqueZe
    2015-12-16 22:04:20

    真棒了