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

java字符串反转

时间:2014-09-22 20:05:13      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   使用   java   ar   strong   for   

1、递归反转

1 public static String reverseString(String x) {
2         if (x == null || x.length() < 2)
3             return x;
4         else
5             return reverseString(x.substring(1)) + x.charAt(0);
6}

 

2、jdk自带的方法

1 public static String reverse(String str){
2      return new StringBuilder(str).reverse().toString();
3}

3、使用charAt()方法

1 public static String reverse(String str){  
2         String c ="";
3         for (int i = str.length() - 1; i >= 0; i--) {  
4               
5             c+= str.charAt(i);  
6               
7         }  
8         return c;
9 }    

 

java字符串反转

标签:style   blog   color   os   使用   java   ar   strong   for   

原文地址:http://www.cnblogs.com/kingxiaozi/p/3986369.html

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