package string; public class StringReverse { public static void main(String[] args) { /** * 字符串反转 */ String str = "dlrow,olleh"; String reverse =new StringBuffer(str).reverse().toString(); System.out.println("反转之前的字符串:"+str); System.out.println("反转之后的字符串:"+reverse); } }
输出结果
原文地址:https://www.cnblogs.com/zhuxiaopang/p/8496307.html
时间: 2024-10-11 09:54:21