我正在尝试将文件“TutorialMap”用作本教程任务中的地图。我一直被告知 MapReader“阅读器”需要是静态的,但是当它是静态的时,我被告知“未处理的异常类型 FileNotFoundException”,阅读器的构造函数出现错误。
static MapReader reader = new MapReader("TutorialMap");
static Territory[][] missionMap = reader.getMap();
public TutorialMission() throws FileNotFoundException {
super(missionMap, Size, AircraftCarrierID, AircraftCarrierID);
}
超类的构造函数:
public class MissionIF extends Map {
public MissionIF(Territory[][] load, String size, int StartingMoney, int powerLevel)
{
// Set money per mission.
super();
谢谢你的时间。