[Solved] What are getter and setter methods? [duplicate]


With setters you set the value of a property in a instance of a class. A getter is a function that gives you the variable as a return when you call it. You use setters and getters to control the access to private properties.

2

solved What are getter and setter methods? [duplicate]