0
/ 1.0
Which lines contain the constructor?
public class Test() { private final int SHIRTS = 24; private int numPants= 14; private int tanks =0;...
Which lines contain the constructor?
public class Test() {
private final int SHIRTS = 24;
private int numPants= 14;
private int tanks =0;
public Test(int blueJeans, int tankTops) {
tanks = tanks + tankTops;
numPants = blueJeans+ numPants;
}
}//end of class
Your feedback will appear here when you check your answer.