Question: / * * This class models a ball that bounces off walls. * / public class Ball { / / Instance variables private int distance;
This class models a ball that bounces off walls.
public class Ball
Instance variables
private int distance;
private int startPosition;
private int position;
private boolean travelingEast;
private boolean travelingWest;
Constructs a ball at position traveling east.
@param rightWall the position of the wall to the right
public Ballint rightWall
distancerightWall;
position;
travelingEasttrue;
travelingWestfalse;
Moves the ball.
public void move
iftravelingEast && position distance
travelingEastfalse;
travelingWest true;
iftravelingWest && position
position position ;
if startPosition
travelingEasttrue;
travelingWest false;
Gets the current position.
@return the current position
public int getPosition
return position;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
