本帖最后由 。。。。。。。 于 2013-11-8 15:29 编辑
- String s = "abcdefg";
- public static void swap(String s,int start,int end){
- int num = s.charAt(start);
- s.charAt(start)=s.charAt(end);
- s.charAt(end)=num;
- }
复制代码 字符串中字符不能互换位置吗?
例如把索引为1的字符和索引为4的字符调换位置,这样不行吗?非要转换成字符数组才能够换位置吗?
|