10黑马币
最佳答案有:getBytes,toCharArray,toLowerCase,toUpperCase,concat
具体如下:
1,将字符串转成字节数组,返回字节数组getBytes(),查询ASCII表。
例:String s = "abc";
byte[] b = s.getBytes();//b={97,98,99}
2,将字符串转成字符数组,返回字符数组toCharArray(),不查询ASCII表。
例:String s = "to China";
char[] ch = s.toCharArray();//ch={‘t’,’o’,’ ’,’C’,’h’,’i’,’n’,’a’}
3,将字符串全部转成 ...
| |
| |