Question: assistance with java require pls I ' m encountering the following error: The constructor Satellite ( int , String, Angle, int, int, int, int, int,

assistance with java require pls
I'm encountering the following error: The constructor Satellite(int, String, Angle, int, int, int, int, int, int, int) is undefinedJava(134217858)
here is the code the error occurs in
package unsw.blackout;
import unsw.utils.Angle;
public class StandardSatellite extends Satellite {
private static final int LINEAR_VELOCITY =2500;
private static final int MAX_RANGE =150000;
private static final int MAX_STORAGE =80;
private static final int MAX_FILES =3;
private static final int RECEIVE_BANDWIDTH =1;
private static final int SEND_BANDWIDTH =1;
public StandardSatellite(int satelliteID, Angle positionDegrees, int height){
super(satelliteID, "Standard", positionDegrees, height, LINEAR_VELOCITY, MAX_RANGE,
MAX_STORAGE, MAX_FILES, RECEIVE_BANDWIDTH, SEND_BANDWIDTH);
}
}
here is the constructor of the superclass it should be reffering to
public Satellite(int satelliteID, String type, Angle posDegrees, Double height, int linearVelocity,
int maxRange, int maxStorage, int maxFiles, int receiveBandwidth, int sendBandwidth){
this.satelliteID = satelliteID;
this.type = type;
this.posDegrees = posDegrees;
this.linearVelocity = linearVelocity;
this.height = height;
this.maxRange = maxRange;
this.maxStorage = maxStorage;
this.maxFiles = maxFiles;
this.receiveBandwidth = receiveBandwidth;
this.sendBandwidth = sendBandwidth;
this.currentStorage =0;
this.currentFiles =0;
}
pls help solve this issue

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!