如果它实际上没有向左移动任何像素,那么设置负宽度有什么意义,例如:
System.out.printf("%-9s", "Name:"); //even though I have -9 it doesn't actually move to the left
但是有:
System.out.printf("%9s", "Name:"); //moves Name to the right 9 pixels
那么,如果 (-) 宽度实际上没有向左移动,那么它的意义何在?
注意:我使用 intelliJ,所以也许它与我的 IDE 有关?