我正在尝试创建一个类并在其中创建两个构造函数。我已经创建了它,因为我已经完成了所有以前的类和构造函数,但由于某种原因,它一直告诉我向两个构造函数添加返回类型。
我试图看看我创建的这个是否与我以前的构造函数有什么不同,但看不出有什么不同。
谁能看到我要去哪里错了?
public class Book {
//instance variables
//accessSpec type varname;
private String title;
private String author;
private double price;
//constructors
public initialiseInstanceFields() {
title = "";
author = "";
price = 0.00;
}
public initialiseInstanceFields(String titleIn, String authorIn, double priceIn) {
title = titleIn;
author = authorIn;
price = priceIn;
}
//methods
//accessSpec returntype varname(argList){}
//return the title
public String getTitle() {
return title;
}
}//end class