1 4 package demo.inventory; 5 6 public class Product 7 { 8 public double price; 9 public final String name; 10 public final String sku; 11 12 public Product(String n, double p, String s) 13 { 14 name = n; 15 price = p; 16 sku = s; 17 } 18 19 public int hashCode() 20 { 21 return sku.hashCode(); 22 } 23 24 public void setPrice(double p) 25 { 26 synchronized(this) { price = p; } 27 } 28 } 29 | Popular Tags |