Zoom Add Page
Insert Table Chart
9. Show the output of the following program.
public class Shirt {
private int collarSize, sleeveLength;
private final static String MATERIAL = "cotton";
public Shirt(int col, int len) {
collarSize = col;
sleeveLength = len;
}
public void display(){
System.out.println("The collar size is " +
}
collarSize + ", the sleeve length is " +
sleeveLength + ", and the material is " +
Shirt.MATERIAL);
}
public class TestShirt {
public static void main(String[] args) {
Shirt shirt1 = new Shirt(16, 34);
Shirt shirt2 = new Shirt(15, 33);
Shirt shirt3 = new Shirt(14, 30);
shirt1.display();