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