Kotlinlearncs.online LogoJava
Return to List

Solve: Course Getters and Setters

Created By: Geoffrey Challen
/ Version: 2020.9.0

Create a public class named Course. Course should store two pieces of data: a name (as a String?) using the property name and an enrollment (as an Int) using the property enrollment. Provide a constructor that allows both properties to be set, with the name first. The name property should be publicly readable but not publicly writable, while enrollment should be both publicly readable and writable. Finally, reject negative enrollment values and null names.

Related Lessons

Stuck? You may find these lessons helpful: