Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialdovlavi
358 PointsSetters and Getters... huh??
Can someone please elaborate on this setters and getters concept - I don't feel it was made very clear in the video and I don't understand why we need them instead of directly manipulating the variable without 'setting' and 'getting' them.
Thanks!
1 Answer
Stone Preston
42,016 Pointsthis stack overflow post provides a list of many reasons.
The first reason: Encapsulation of behavior associated with getting or setting the property - this allows additional functionality (like validation) to be added more easily later
is one of the big ones.
Basically getters and setters are helpful when you want to run some code whenever the variable is get or set, like sending a notification to your app whenever a certain variable is changed and stuff like that. but there are many reasons so I would have a look at that list and maybe do some more research on your own