從Java教程:如何在java SE7中格式化字符串?
System.out.format("%s: %s"
+ " has bowed to me!%n",
this.name, bower.getName());
但在Java SE7有沒有這樣的方法。 我應該使用哪種方法? 謝謝。
從Java教程:如何在java SE7中格式化字符串?
System.out.format("%s: %s"
+ " has bowed to me!%n",
this.name, bower.getName());
但在Java SE7有沒有這樣的方法。 我應該使用哪種方法? 謝謝。
還有String.format
或System.out.printf
。
System.out.printf("%s: %s"
+ " has bowed to me!%n",
this.name, bower.getName());
String.format
返回結果在String
; System.out.printf
將結果打印到控制檯。
(並且jbx也是正確的:你爲什麼說Java SE 7中沒有這種方法?)。
儘管是一個很好的選擇,System.out.format()在java 7中,我可以在API中看到它: – PermGenError
java 7中有很多類,你是否打算檢查API?http://docs.oracle.com/javase/7/docs/api/java/io/PrintStream.html – PermGenError