我正在尝试在我的主要方法中使用另一个类的方法,但我遇到了错误。它告诉我类中的方法不能应用于给定的类型。
public class studentclass {
public void inputloop(String[] args){
Scanner scan = new Scanner(System.in);
String[][] student = new String[10][];
Double[][] results = new Double[10][];
Double[] total = new Double[10];
String tableln = "";
for(int index = 0; index < student.length; index++){
System.out.println("\nPlease enter student " + (index+1) + "'s details");
String userinput = scan.nextLine();
student[index] = userinput.split(",");
results[index] = new Double[4];
results[index][0] = Double.parseDouble(student[index][2]);
results[index][1] = Double.parseDouble(student[index][3]);
results[index][2] = Double.parseDouble(student[index][4]);
results[index][3] = Double.parseDouble(student[index][5]);
total[index] = (results[index][0]*0.1+results[index][1]*0.4+
results[index][2]*0.2+results[index][3]*0.3);
System.out.println("\nStudent name\tFAN \t\tResult1\tResult2\tResult3\tResult4\tTotal");
tableln = tableln + "\n" + student[index][0] + "\t" + student[index][1] + "\t"
+ results[index][0] + "\t" + results[index][1] + "\t" + results[index][2] + "\t"
+ results[index][3] + "\t" + total[index];
System.out.println(tableln);
}
}
然后在我的主要方法中输入这个。
public static void main(String[] args) {
studentclass info = new studentclass();
info.inputloop();
}
它说“类 studentclass 中的方法 inputloop 不能应用于给定类型。所需的 String [] 没有发现争论。” 请帮我。谢谢