Untitled

 avatar
unknown
java
3 years ago
147 B
3
Indexable
public class Item {
	int id;
	static int numberOfItems;
	
	Item(int id){
		this.id = id;
		numberOfItems++;
	}
	
	Item(){
		numberOfItems++;
	}
	
}