A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 zhrnghgwsws 于 2014-5-19 21:22 编辑

对一个字符串进行反转的最方便的方法是什么?

7 个回复

倒序浏览
public class reverse
{
public static void main
{
String str="abc";
StringBuffer sb = new StringBuffer(str);
sb.reverse();
str=new String(sb);
System.out.println(str);
}
}
}

个人觉得直接调用reverse是最方便的吧
回复 使用道具 举报 1 0
本帖最后由 skill20 于 2014-5-19 16:38 编辑

扔StringBuilder 来个反转。或变成字符数组,循环换位置反转。
回复 使用道具 举报
赞成楼上的回答   使用StringBuffer的reverse()就直接能将其反转
回复 使用道具 举报
skill20 发表于 2014-5-19 16:26
扔StringBuilder 来个反转。或变成字符数组,用Arrays.reverse反转。

谢谢。。。。。。
回复 使用道具 举报
saheru 发表于 2014-5-19 16:11
public class reverse
{
public static void main

谢谢。。。。。。。。
回复 使用道具 举报
amao 初级黑马 2014-5-19 18:28:55
7#
saheru 发表于 2014-5-19 16:11
public class reverse
{
public static void main

友情提示:书写格式规范,类名首字母要大写;一般建议使用StringBuilder
共勉~
回复 使用道具 举报
saheru 中级黑马 2014-5-19 18:41:52
8#
amao 发表于 2014-5-19 18:28
友情提示:书写格式规范,类名首字母要大写;一般建议使用StringBuilder
共勉~ ...

谢谢哈~因为代码比较短直接在论坛打得没太细研究疏忽了:lol
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马