LeetCode之344. Reverse String
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode之344. Reverse String相关的知识,希望对你有一定的参考价值。
-------------------------------
Java也可以实现一行代码反转字符串哦
AC代码如下:
public class Solution { public String reverseString(String s) { return new StringBuffer(s).reverse().toString(); } }
以上是关于LeetCode之344. Reverse String的主要内容,如果未能解决你的问题,请参考以下文章