public class PerishableItem extends Item { private float maxTemp; public PerishableItem(String description, int quantity, float maxTemp) { super(description, quantity); this.maxTemp = maxTemp; } }