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