我想使用一些新的Java字符串格式化技巧,很基本的東西。它編譯沒有任何錯誤消息,但不會允許我執行代碼。有人可以向我解釋爲什麼這是錯的嗎?提前致謝。字符串格式不工作
我的代碼:
class TestingStringFormat {
public static void main(String args[]) {
System.out.printf("Total cost %-10d ; quantity %d\n", "ten spaces",5, 120);
for(int i=0; i<20; i++){
System.out.printf("%-2d: ", i, "some text here/n", 1);
}
}
}