Java StringBuffer Reverse Example : StringBuffer « Development Class « Java
- Java
- Development Class
- StringBuffer
Java StringBuffer Reverse Example
public class Main {
public static void main(String[] args) {
StringBuffer sb = new StringBuffer("this is a test");
System.out.println(sb);
sb.reverse();
System.out.println(sb);
}
}
/*
this is a test
tset a si siht
*/
Related examples in the same category