public class Good { float price; String name; public Good(float price, String name) { this.price = price; this.name = name; } }