Java字符串反转

public class StringReverseExample{
  public static void main(String[] args){
  String string="abcdef";
  String reverse = new StringBuffer(string).reverse().toString();
  System.out.println(" String before reverse:"+string);
  System.out.println("String after reverse:"+reverse);
  }
}

原文地址:https://www.cnblogs.com/CrisZjie180228/p/8821808.html