Java Error: The constructor is undefined
问题 In Java, Why am I getting this error: Error: The constructor WeightIn() is undefined Java Code: public class WeightIn{ private double weight; private double height; public WeightIn (double weightIn, double heightIn){ weight = weightIn; height = heightIn; } public void setWeight(double weightIn){ weight = weightIn; } public void setHeight(double heightIn){ height = heightIn; } } public class WeightInApp{ public static void main (String [] args){ WeightIn weight1 = new WeightIn(); //Error