getBytes() - 将该字符串转换成byte数组。。。。
byte[] str=s.getBytes();
for (int i=0;i<str.length;i++)
{
if (str[i]=='a'){
num++;
}
getBytes()得到的是字节数组。字符数组无法与一个字符比较。