标签:style blog color os ar for sp div log
1.2
public static String reverseString(String str) { if (str == null) { return str; } else { StringBuilder sb = new StringBuilder(); for (int i = str.length()-1; i >= 0; i--) { sb.append(str.charAt(i)); } return sb.toString(); } } }
标签:style blog color os ar for sp div log
原文地址:http://www.cnblogs.com/bnbqian/p/4067767.html