Hello wondering if anyone could lend me a hand!
// Create a Item oject
item item = new item();
Error - Cannot find symbol - Constructor item();
public class item
{
// Attributes
private String Itemcode;
private String Itemname;
private String Description;
private String Style;
private String Finish;
private float Unitprice;
private float Stock;
private String Suppliercode;
private String Suppliername;
private String Address;
public item(String ItemcodeIn, String ItemnameIn, String DescriptionIn,
String StyleIn, String FinishIn, float UnitpriceIn, float StockIn,
String SuppliercodeIn,
String SuppliernameIn, String AddressIn)
{
Itemcode = ItemcodeIn;
Itemname = ItemnameIn;
Description = DescriptionIn;
Style = StyleIn;
Finish = FinishIn;
Unitprice = UnitpriceIn;
Stock = StockIn;
Suppliercode = SuppliercodeIn;
Suppliername = SuppliernameIn;
Address = AddressIn;
}
And this code is then followed by all of the setter/getter methods for the attributes.
Any ideas?
Any help is appreciated.
PascalCasefor class names andcamelCasefor variable names. So, if you followed the convention, your class name would beItemand your variable names would beitemCodeIn,itemNameIn,item, etc. – Tim Pote May 15 '12 at 18:33