将字符串"This is a test"倒置并输出

前端之家收集整理的这篇文章主要介绍了将字符串"This is a test"倒置并输出前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


public class Test2 {

/**
* 将字符串"This is a test"倒置并输出
*/
public static void main(String[] args) {
StringBuffer s = new StringBuffer("This is a test");
String str = s.reverse().toString();
System.out.println(str);
}

}

原文链接:https://www.f2er.com/javaschema/286328.html

猜你在找的设计模式相关文章