I am having trouble understanding the concept of getters and setters in the C# language. In languages like Objective-C, they seem an integral part of the system, but not so much in C# (as far as I can tell). I have read books and articles already, so my question is, to those of you who understand getters & setters in C#, what example would you personally use if you were teaching the concept to a complete beginner (this would include as few lines of code as possible)?
|
|
In C#, Properties represent your Getters and Setters. Here's an example:
You would access this property just like a field. For example:
A few other things to note: 1) You don't have to specifiy both a getter and a setter, you can omit either one. 2) Properties are just "syntactic sugar" for yourtraditional getter and setter. The compiler will actually build get_ and set_ functions behind the scenes (in the compiled IL) and map all references to your property to those functions. |
||||
|
|
|
I think a bit of code will help illustrate what setters and getters are:
In this example we have a private member of the class that is called bar. The GetBar and SetBar methods do exactly what they are named - one retrieves the bar member, and the other sets its value. In c# 1.1 + you have properties. The basic functionality is also the same:
The private member bar is not accessible outside the class. However the public "Bar" is, and it has two accessors - get, which just as the example above "GetBar()" returns the private member, and also a set - which corresponds to the SetBar(string value) method in the forementioned example. Starting with C# 3.0 and above the compiler became optimized to the point where such properties do not need to have the private member as their source. The compiler automatically generates a private member of that type and uses it as a source of a property. public class Foo { public string Bar { get; set; } } what the code shows is an automatic property that has a private member generated by the compiler. You don't see the private member but it is there. This also introduced a couple of other issues - mainly with access control. In C# 1.1, and 2.0 you could omit the get or set portion of a property:
Giving you the chance to restrict how other objects interact with the "Bar" property of the Foo class. Starting with C# 3.0 and above - if you chose to use automatic properties you would have to specify the access to the property as follows: public class Foo { public string Bar { get; private set; } } What that means is that only the class itself can set Bar to some value, however anyone could read the value in Bar. |
|||
|
|
|
C# introduces properties which do most of the heavy lifting for you... ie
is a C# shortcut to writing...
Basically getters and setters are just means of helping encapsulation. When you make a class you have several class variables that perhaps you want to expose to other classes to allow them to get a glimpse of some of the data you store. While just making the variables public to begin with may seem like an acceptable alternative, in the long run you will regret letting other classes manipulate your classes member variables directly. If you force them to do it through a setter, you can add logic to ensure no strange values ever occur, and you can always change that logic in the future without effecting things already manipulating this class. ie
|
|||||
|
|
This would be a get/set in C# using the smallest amount of code possible. You get auto-implemented properties in C# 3.0+.
|
|||
|
|
|
Getters and Setters in C# are something that simplifies the code.
And calling it (assume we have a person obj with a name property):
This simplifies your code. Where in Java you might have to have two methods, one to Get() and one to Set() the property, in C# it is all done in one spot. I usually do this at the start of my classes:
This creates a getter and setter for my foobar property. Calling it is the same way as shown before. Somethings to note are that you don't have to include both get and set. If you don't want the property being modified, don't include set! |
|||
|
|
|
Internally, getters and setters are just methods. When C# compiles, it generates methods for your getters and setters like this, for example:
C# allows you to declare these methods using a short-hand syntax. The line below will be compiled into the methods above when you build your application.
or
|
||||
|
|
|
Most languages do it this way, and you can do it in C# too.
But C# also gives a more elegant solution to this :
And later access it with.
For newer versions of C# it's even better :
and later :
|
||||
|
|
|
My explanation would be following. (It's not so short, but it's quite simple.) Imagine a class with a variable:
Well, there is a small problem with this class: no one can see the
This is already better, but now everyone instead of plain With properties, we can do the same, but the code stays clean:
Nice, so with the properties we have finer control over the variable access. Another problem: okay, we want the outer code to be able to set This is traditionally achieved in the following way:
But again, we don't want expose to our clients that setting the weight is a complicated operation, it's semantically nothing but assigning a new weight. So the code with a setter looks the same way, but nicer:
So, no doubt, properties are "just" a syntactic sugar. But it makes the client's code be better. Interestingly, the need for property-like things arises very often, you can check how often you find the functions like GetXXX() and SetXXX() in the other languages. |
||||
|
As far as I understand getters and setters are to improve encapsulation. There is nothing complex about them in C#. You define a property of on object like this:
This is the most simple use. It basically sets an internal variable or retrieves its value. You use a Property like this:
You could eventually do some processing on the value in the setters or getters like this:
if you skip set or get, your property will be read or write only. That's how I understand the stuff. |
||||
|
|


