- 首先请原谅我提出这样一个问题,而其他类似问题存在,但是我无法解决我的答案 -
我正在尝试输出一个酒店房间列表,我希望每个输出的长度为20个字符。我使用了以下代码:
String tempHotel = String.format("%-" + 20 + "." + 20 + "s", this.nameOfHotel) + "//"; //the "//" are used in this case to measure length
然而我输出的琴弦尺寸不均匀。 例如,我有输出,例如:
Grande Bretagne //
Hotel Maxim //
Kepinski //
我的代码有什么问题吗?我检查了多个其他答案