首页 > 代码库 > 字符串反写(学习)

字符串反写(学习)

今天想起了之前的一个问题,反写字符串的方法。

 

public class shouxie {
public static void main(String[] args) {
String str = "abcdefghijklmnopqrstuvwxyz";
int length = str.length();
char[] chars = str.toCharArray();
for(int i = 0 ; i < length / 2 ; i ++){
char temp;
temp = chars[i];
chars[i] = chars[length - 1 -i];
chars[length -1 - i] = temp;
}
System.out.println(chars);
}
}

这样就可以了。

字符串反写(学习)