这是我目前所拥有的
public String toString() {
return this.make + " " + this.model + " " + this.year + " $"
+ this.price + " " + this.mpg;
}
我需要将其格式化为这些规范
请帮助,我迷路了。 感谢
答案 0 :(得分:0)
String.format()
对此非常有用。如果您使用它,它的功能与C中的printf类似。请参阅http://docs.oracle.com/javase/7/docs/api/java/lang/String.html#format%28java.lang.String,%20java.lang.Object...%29和http://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#syntax
答案 1 :(得分:0)
看这里:
http://examples.javacodegeeks.com/core-java/lang/string/java-string-format-example/
根据文章,你必须像这样格式
return String.format("%s %s %s $%s %s",this.make,this.model,this.year,this.price,this.mpg);