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()
{
}
Add this to your class:
public WeightIn(){
}
You do not have the constructor WeightIn() .Create it or give parameters in main method to constructor.