可以使用StringBuffer的reverse()方法,代码如下:
public static void main(String[] args) { String str="abcde"; StringBuffer stringBuffer=new StringBuffer(str).reverse(); System.out.print(stringBuffer); }
输出结果为:edcba
原文:https://www.cnblogs.com/sunguiyong/p/9544152.html