Untitled
Anonymous
java
01/16/2022 4:24 PM
196 B
17
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++;
}
}