Java - Object-Oriented Programming Concepts
How can you modify this class to count how many objects of
Counter have been created?class Counter {
int id;
Counter(int id) {
this.id = id;
}
}