No es una clase que encierra Java
Estoy tratando de hacer un juego de tetris y obtengo "Shape is not an enclosing class" cuando intento crear un objeto
public class Test {
public static void main(String[] args) {
Shape s = new Shape.ZShape();
}
}
Estoy usando clases internas para cada forma. Aquí está parte de mi código
public class Shape {
private String shape;
private int[][] coords;
private int[][] noShapeCoords = { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 } };
private int[][] zShapeCoords = { { 0, -1 }, { 0, 0 }, { -1, 0 }, { -1, 1 } };
private int[][] sShapeCoords = { { 0, -1 }, { 0, 0 }, { 1, 0 }, { 1, 1 } };
private int[][] lineShapeCoords = { { 0, -1 }, { 0, 0 }, { 0, 1 }, { 0, 2 } };
private int[][] tShapeCoords = { { -1, 0 }, { 0, 0 }, { 1, 0 }, { 0, 1 } };
private int[][] squareShapeCoords = { { 0, 0 }, { 1, 0 }, { 0, 1 }, { 1, 1 } };
private int[][] lShapeCoords = { { -1, -1 }, { 0, -1 }, { 0, 0 }, { 0, 1 } };
private int[][] mirroredLShapeCoords = { { 1, -1 }, { 0, -1 }, { 0, 0 }, { 0, 1 } };
public Shape(){
int[][] coords = noShapeCoords;
shape = "NoShape";
}
class ZShape {
int[][] coords = zShapeCoords;
String shape = "ZShape";
}
class SShape {
int[][] coords = sShapeCoords;
String shape = "SShape";
}
//etc
}
¿Qué estoy haciendo mal ?
Warning: Undefined property: agent_blog_content::$date_asked in /var/www/agent_etc/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 32
Warning: Undefined property: agent_blog_content::$count_answers in /var/www/agent_etc/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 52