我試圖學習java,而我被卡在'類'部分。他們給了我一個問題,我不知道爲什麼這是錯的。需要幫助解決Square Class問題,特別是代碼?
我已經讀了很多,我不明白爲什麼有大約14個錯誤信息?在所有...
這裏的任務:
// You are to write the constructor specified for this Square class. The Square class
// has an instance variable of type double, side, which is the length of each side of
// the square. The javadoc has been provided for you to help you tell what you needs to
// be done
//
// HINT: Write the constructor for the class Square.
// The constructor will take in a parameter of the type double
// and assign that parameter to the instance variable side
這裏是我的代碼:
public class Square(double side)
private double side;
/**
* Constructor for objects of class Square
* @param theSide the length of the side of this Square
*/
public main(double theSide) {
side = theSide;
}
/**
* Gets the length of a side of this square
* @return the side of this square
*/
public double getSide()
{
return side;
}
Compiler error: /tmp/codecheck.XNhW00Z3c8/Square.java:12: error: '{' expected public class Square(double side)^/tmp/codecheck.XNhW00Z3c8/Square.java:12: error: ';' expected public class Square(double side)^/tmp/codecheck.XNhW00Z3c8/Square.java:31: error: reached end of file while parsing }^/tmp/codecheck.XNhW00Z3c8/Square.java:14: error: variable side is already defined in class Square private double side;^
哪裏是錯誤?請發佈錯誤 – abcOfJavaAndCPP
14錯誤,你不能打擾張貼其中之一? – John3136
這裏是錯誤,現在他們下降到4。 –