In Java, Why am I getting this error:
Error: The constructor WeightIn() is undefined
Java Code:
public class WeightIn{ pr
WeightIn weight1 = new WeightIn();
The default constructor is not defined. Please define it like this:-
public weightIn() { }