メイン クラスからメソッドを呼び出そうとすると、別のクラスにあるメソッドにアクセスする際に問題が発生します。これが方法です
class RobotData
{
private int junctionRecorder(IRobot robot)
{
int[] juncX;
int[] juncY;
int[] arrived;
int[] junctions;
int i = 0;
i = junctions[0];
juncX[i] = robot.getLocationX();
juncY[i] = robot.getLocationY();
arrived[i] = robot.getHeading();
junctions[0]++;
return i;
}
}
メインクラスでそれを呼び出そうとすると、
public class Test
{
public void controlRobot(IRobot robot)
{
int recordjunction = junctionRecorder(robot);
//...
このエラーが発生します
Test.java:7: cannot find symbol
symbol : method junctionRecorder
誰でも助けることができますか?