gpt4 book ai didi

java - 线程 "main"java.util.MissingFormatArgumentException : Format specifier '10s' 中的异常

转载 作者:搜寻专家 更新时间:2023-10-30 20:58:04 25 4
gpt4 key购买 nike

毫无疑问,我在这里遗漏了一些非常明显的东西,但我无法弄清楚。任何帮助,将不胜感激。错误来自这里:

package B00166353_Grades;

public class Student{
String name,banner;

public Student(String name,String banner){
this.name=name;
this.banner=banner;
}

public String toString(){
String productDetails=new String();
productDetails+=String.format("%-20s%10.2s%10s",this.name,this.banner);
return productDetails;
}
}

最佳答案

您的格式字符串 "%-20s%10.2s%10s" 采用三个参数:

  1. %-20s
  2. %10.2s
  3. %10s

但只提供两个参数:

  1. this.name
  2. this.banner

错误消息表明缺少第三个参数(%10s)。

因此要么调整格式字符串,要么添加第三个参数。

关于java - 线程 "main"java.util.MissingFormatArgumentException : Format specifier '10s' 中的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17881211/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com