本帖最后由 吴璞玉 于 2012-2-25 11:21 编辑
public static void reverse(char[] arr)
{
for(int start=0,end<arr.length-1; start<end;start++,end--)
{
swap(arr,start,end);
}
}
public static void swap(char[] ch,int x,int y)
{
char temp=ch[x];
ch[x]=ch[y];
ch[y]=temp;
}
这是将字符串变成字符数组后进行反转的方法,可是编译时for循环总是报错,肿么回事呢 |