我一直潜伏在这里一段时间,但是我遇到了一个问题,我在一些Java程序中无法解决这个问题。我打赌他们并不难解决,但我只是没有得到它。
我一直在犯这样的错误:
RugbyTeamLadderEditor.java:125: cannot find symbol
symbol : method findAveragePoints(java.util.ArrayList<RugbyTeam>)
location: class RugbyTeamLadderEditor
double averagePointsToBePrinted = findAveragePoints(rugbyTeams);
我有三个类,并且,从带有main方法的类(RugbyTeamLadderEditor),我可以调用构造函数类,但不能调用其中有一些方法的其他类(Part1)。我应该用包裹做点什么吗? - 我所知道的是,在我正在进行的这门入门编程课程中,我没有学到任何关于包的知识,而且我不确定如果我使用它们会如何收到它们。
我的代码长了几百行,所以我将它们放在pastebin中 - 我希望我没有违反任何失礼:/每个类都在自己的.java文件中。
干杯!
编辑:我的代码的一些片段:
在RugbyTeamLadderEditor.java中:
// if the identification number is equal to 5, then print out the average points of all of the teams in the ArrayList
else if (identificationNumber == 5)
{
double averagePointsToBePrinted = findAveragePoints(rugbyTeams);
}
在Part1.java中:
/**
* This method takes a RugbyTeam ArrayList and returns a
* double that represents the average of the points of all
* of the rugby teams
*/
public static double findAveragePoints(ArrayList<RugbyTeam> rugbyTeams)
{
// If there are no objects in the ArrayList rugbyTeams, return 0
if (rugbyTeams.size() == 0)
return 0;
// Declare a variable that represents the addition of the points of each team;
// initialise it to 0
double totalPoints = 0;
// This is a code-cliche for traversing an ArrayList
for (int i = 0; i < rugbyTeams.size(); i++)
{
// Find then number of points a team has and add that number to totalPoints
RugbyTeam r = rugbyTeams.get(i);
totalPoints = totalPoints + r.getPoints();
}
// Declare a variable that represents the average of the points of each teams,
// i.e. the addition of the points of each team divided by the number of teams
// (i.e. the number of elements in the ArrayList); initialise it to 0
double averagePoints = totalPoints / rugbyTeams.size();
return averagePoints;
}
它还没有完成 - 我仍然需要打印一个打印语句来打印那个double,但它现在无关紧要,因为我实际上无法获得那个双倍的值。
答案 0 :(得分:1)
您正在尝试调用方法findAveragePoints
。使用当前实现,您可以在类RugbyTeamLadderEditor
中找到该方法。但是该方法在类Part1
中定义。因此,为了使这项工作,您使用Part1.
预先调用方法(因为它是一个静态方法),程序应该可以工作。
修改强>
代码基本上看起来像这样
double averagePointsToBePrinted = Part1.findAveragePoints(rugbyTeams);
每次尝试调用另一个类中定义的方法时,您必须提供此类的实例或者添加类的名称(如此处 Part1 )到名为。
的方法作为辅助节点,您应该更改变量quitProgram
的名称。变量的名称及其含义相互矛盾。因此,为了让阅读代码的人更清楚,您应该更改名称或处理。