• 2022-06-07
    class Test { public static void main(String[] args) { StringBuffer sb = new StringBuffer("hello world"); sb.delete(6,sb.length()); System.out.println( sb.toString() ); } }
    A: Hello w
    B: Hello
    C: Hello worl