可以使用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
时间: 2024-09-27 17:03:07