if (s.charAt(i)=='a') 为什么不用“” 而是用' ' 区别在哪里呢
" "是用来表示字符串,而‘ ’则是用来表示字符。明显a是一个字符
charAt(int index) 返回指定索引处的 char 值。---------返回值为char