public class Shirts { String type; char size; // Shirt() is the constructor that takes no arguments Shirts() { type = "Oxford Shirt"; } // Shirts(String type) is another constructor, which takes // one argument Shirts(String shirtType) { type = shirtType; } }