Untitled
public class Item { int id; static int numberOfItems; Item(int id){ this.id = id; numberOfItems++; } Item(){ numberOfItems++; } }
public class Item { int id; static int numberOfItems; Item(int id){ this.id = id; numberOfItems++; } Item(){ numberOfItems++; } }