可以通過調用StringBuffer的reverse()方法來實現字符串的反轉操作,示例如下:
public class ReverseString {
public static void main(String[] args) {
String str = "hello world";
StringBuffer stringBuffer = new StringBuffer(str);
stringBuffer.reverse();
String reversedStr = stringBuffer.toString();
System.out.println(reversedStr);
}
}
運行以上代碼,輸出結果為:
dlrow olleh