JAVA大作业2 代码 package thegreatwork; //Enum一般用来表示一组相同类型的常量,这里用于表示运动方向的枚举型常量,每个方向对象包括方向向量. public enum Direction { // 定义上下左右 UP(0, -1), DOWN(0, 1), LEFT(-1, 0), RIGHT(1, 0); private final int y; private final int x; //final修饰的变量不能被继承 Direction(int x, int…