Java StringBuffer reverse() 方法



Java StringBuffer reverse() 方法用于反转 StringBuffer 对象的字符。它以相反的顺序替换字符序列。该方法是静态方法,具有预定义的反转 Java 字符串的逻辑。

reverse() 方法不接受任何参数,并且在反转字符序列时不会抛出任何异常。

语法

以下是 Java StringBuffer reverse() 方法的语法:

public StringBuffer reverse()

参数

  • 它不接受任何参数。

返回值

此方法返回对该对象的引用。

示例:反转 StringBuffer 字符串

如果 StringBuffer 类对象不包含空值,则 reverse() 方法会反转其内容并返回结果对象。

在下面的程序中,我们使用值“TutorialsPoint”实例化StringBuffer 类。使用reverse() 方法,我们尝试反转其字符。

public class Reverse {
   public static void main(String[] args) {
      //instantiating the StringBuffer class
      StringBuffer sb = new StringBuffer("TutorialsPoint");
      System.out.println("The original string before reverse: " + sb);
      //using the reverse() method
      System.out.println("After reverse the string: " + sb.reverse());
   }
}

输出

执行上述程序后,将产生以下结果:

The original string before reverse: TutorialsPoint
After reverse the string: tnioPslairotuT

示例:检查字符串是否为回文

使用reverse() 方法,我们可以反转字符串,并且可以使用此反转后的字符串来检查它是否为回文字符串。

在下面的示例中,我们使用值"malayalam"创建一个StringBuffer 类的对象。然后,使用reverse() 方法反转字符串。使用equals() 方法,我们尝试检查字符串是否等于反转后的字符串或回文字符串。

public class Reverse {
   public static void main(String[] args) {
      //instantiating the StringBuffer class
      StringBuffer sb = new StringBuffer("malayalam");
      System.out.println("The given string: " + sb);
      //using the reverse() method
      StringBuffer reverse_str = sb.reverse();
      System.out.println("The reverse the string: " + reverse_str);
      if(("malayalam".equals(String.valueOf(reverse_str)))) {
         System.out.println("The string is palindrome string");
      } else {
         System.out.println("The string is not a palindrome string");
      }
   }
} 

输出

以下是上述程序的输出:

The given string: malayalam
The reverse the string: malayalam
The reverse string is equal to original string
java_lang_stringbuffer.htm
广告