码迷,mamicode.com
首页 > 编程语言 > 详细

Java 实例 - 字符串反转

时间:2018-03-03 14:13:00      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:class   log   ringbuf   pos   技术分享   col   http   stat   src   

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);
    }

}

输出结果技术分享图片

 

Java 实例 - 字符串反转

标签:class   log   ringbuf   pos   技术分享   col   http   stat   src   

原文地址:https://www.cnblogs.com/zhuxiaopang/p/8496307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!