System.out.print("a");System.out.print("\r");System.out.print("b");
输出结果:
a
b
System.out.print("a");System.out.print("\b");System.out.print("b");
a?b