Could someone explain to me the concept of Get and Set property? It's just not sinking in for me.
Thanks!
|
Could someone explain to me the concept of Get and Set property? It's just not sinking in for me. Thanks!
| ||||
|
feedback
|
|
This is not a concept native to vb.net. It is part of the .net framework and oop. To make a long story short it is just the way a client uses/interacts with the object in order to force him/her to follow a particular pattern of usage. It is a way of reading/setting values of the private members/variables after a layer where some logic can be implemented. For e.g. in the setter implementation of a class called Account. Lets say it has a property called Balance which is of string datatype (for example sake), but has only numeric values.
Hence inorder to provide consistency in the data of an object (while either reading/setting) we have getters and setters resp. Now the setter for the above class can be written like this:
| |||
|
feedback
|
|
I don't use Visual Basic, but the principle works like this: You have a You'd create a get and a set method for this variable (also called accessor and mutator methods) which would have an access level of public. This will allow you more control over how the value is set or retrieved. Here's some pseudocode:
With this setter method, you can make sure that Make sense? | |||
feedback
|
|
Making a property with For example, let's say that you're making a UserControl that has a label, and you want to let the people who use the user control get and set the text of the label, without giving them access to the label itself. (Note that if they really wanted to, they could access it through the You could make a pair of methods like When you write a property, you write the For example:
| |||
|
feedback
|
|
You have one property that can have some combination of a getter and a setter. The getter is the code that runs when you read from the property. This code must return a value. The setter is the code that runs when you assign to the property. | ||||
|
feedback
|