Untitled
unknown
java
4 years ago
147 B
6
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++;
}
}