Java StringBuffer.reverse()
Syntax
StringBuffer.reverse() has the following syntax.
public StringBuffer reverse()
Example
In the following code shows how to use StringBuffer.reverse() method.
public class Main {
public static void main(String[] argv) {
StringBuffer sb = new StringBuffer();
sb.append("java2s.com");
/*from w ww . j a v a 2 s . com*/
sb.reverse();
System.out.println(sb.toString());
}
}
The output: