字符串反写(学习)
Posted M_派森
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串反写(学习)相关的知识,希望对你有一定的参考价值。
今天想起了之前的一个问题,反写字符串的方法。
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);
}
}
这样就可以了。
以上是关于字符串反写(学习)的主要内容,如果未能解决你的问题,请参考以下文章