For an assignment I need to create a class within class Point from java.awt.Point. I need to be able to use point methods while creating my own variables for the inner/nested class. I am a bit confused by the differences between static nested classes and inner classes and dont know which one to use. I have tried to use a static nested class and have encountered an error stating "modifier static not allowed here"
My misguided attempt:
class Point {
static class RobotJAW {
int goldcollected, x, y;
RobotJAW() {
goldcollected = 0;
alive = true;
x = 0;
y = 0;
}
}
}
The point of creating this class it to have a robot search a field of gold and bombs and collect gold while being destroyed by bombs. I can only use the Point and Scanner classes from the java API. I need to use the point methods equals(obj), move(int x, int y), getLocation(), and setLocation(int x, int y). But I need to add goldcollected and alive variables. Also, this is an assignment for school, so I would like to gain some more knowledge about the subject, and some guidance, without being given someone elses work.