06. juni 2003 - 17:19Der er
10 kommentarer og 1 løsning
fejlmelding i bluej
Jeg sidder og prøver på at få "bluej" til at compile min klasse, men jeg får hele tiden fejlmeldingen "cannot resolve symbol" ved linie public STANDARD(double v, String l) { vægt = v; land = l; } Hvor den markerer {}
/** * Write a description of class STANDARD here. * * @author 126915 * @version 10.06.2003 */ public class STANDARD extends BREV { // instance variables - replace the example below with your own private double længde; private double bredde; private double tykkelse;
/** * Constructor for objects of class STANDARD */ public STANDARD(double v, String l) { vægt = v; land = l; }
/** * An example of a method - replace this comment with your own * * @param y a sample parameter for a method * @return the sum of x and y */ public double getVægt() { return vægt; } public void setVægt(double v){ vægt = v; } public void getLand(){ return land; } public void setLand(String l){ land = l; } public String toString (){ double porto = 0; // <----- if (vægt <= 50) if (land = Danmark){ porto = 4.25;}
if (vægt <= 50) if (land = Europa) { porto = 5.50;}
if (vægt <= 50) if (land = Øvrige) { porto = 6.50;} return " Vægt: " + vægt + " Porto: " + porto;
/** * Write a description of class STANDARD here. * * @author 126915 * @version 10.06.2003 */ public class STANDARD /* extends BREV */ { // instance variables - replace the example below with your own private double længde; private double bredde; private double tykkelse; private double vægt; private String land;
/** * Constructor for objects of class STANDARD */ public STANDARD(double v, String l) { vægt = v; land = l; }
/** * An example of a method - replace this comment with your own * * @param y a sample parameter for a method * @return the sum of x and y */ public double getVægt() { return vægt; } public void setVægt(double v) { vægt = v; } public String getLand() { return land; } public void setLand(String l) { land = l; } public String toString() { double porto = 0; // <----- if (vægt <= 50) if (land.equals("Danmark")) { porto = 4.25; }
if (vægt <= 50) if (land.equals("Europa")) { porto = 5.50; }
if (vægt <= 50) if (land.equals("Øvrige")) { porto = 6.50; } return " Vægt: " + vægt + " Porto: " + porto;
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.