Kotlinlearncs.online LogoJava
Return to List

Homework: Counter Object

Created By: Geoffrey Challen
/ Version: 2020.9.0

Define a public class named Counter with a single public instance method named increment. increment takes no parameters and returns an int. The first time it is called it should return 0, the next 1, the next 2, and so on. Each instance of Counter should maintain its own private counter.

Related Lessons

Stuck? You may find these lessons helpful: