A.s.defaultReadObject();
B.this=s.defaultReadObject();
C.y=s.readInt();x=s.readInt();
D.x=s.readInt();y=s.readInt();
第1题:
A.Direction d = NORTH;
B.Nav.Direction d = NORTH;
C.Direction d = Direction.NORTH;
D.Nav.Direction d = Nav.Direction.NORTH;
第2题:
A.Alpha a = x;
B.Foo f = (Delta)x;
C.Foo f = (Alpha)x;
D.Beta b = (Beta)(Alpha)x;
第3题:
A.s.defaultReadObject();
B.this=s.defaultReadObject();
C.y=s.readInt();x=s.readInt();
D.x=s.readInt();y=s.readInt();
第4题:
A.Point p = new Point();
B.Line.Point p = new Line.Point();
C.The Point class cannot be instatiated at line 15.
D.Line l = new Line() ; l.Point p = new l.Point();
第5题:
A.Point p = Line.getPoint();
B.Line.Point p = Line.getPoint();
C.Point p = (new Line()).getPoint();
D.Line.Point p = (new Line()).getPoint();