I read this answer and its comments and I'm curious: Are there any reasons for not using this / Self / Me ?
BTW: I'm sorry if this has been asked before, it seems that it is impossible to search for the word this on SO.
|
|
I read this answer and its comments and I'm curious: Are there any reasons for not using BTW: I'm sorry if this has been asked before, it seems that it is impossible to search for the word
|
|||
|
|
|
|
Warning: Purely subjective answer below. I think the best "reason" for not using this/self/me is brevity. If it's already a member variable/function then why redundantly add the prefix? Personally I avoid the use of this/self/me unless it's necessary to disambiguate a particular expression for the compiler. Many people disagree with this but I haven't ever had it be a real sticking point in any group I've worked for. |
||||||||||
|
|
|
It was asked before indeed, in the "variable in java" context: Do you prefix your instance variable with ‘this’ in java ? The main recurrent reason seems to be:
Readability, in other word... which I do not buy, I find |
||
|
|
|
|
That sounds like nonsense to me. Using 'this' can make the code nicer, and I can see no problems with it. Policies like that is stupid (at least when you don't even tell people why they are in place). |
||
|
|
|
|
I think most of the common scenarios have been covered in the two posts already cited; mainly brevity and redundancy vs clarity - a minor addition: in C#, it is required to use "this" in order to access an "extension method" for the current type - i.e.
where
|
||
|
|
|
|
as for me i use |
||
|
|
It clarifies in some instances, like this example in c#:
|
||||||||
|
|
|
I think this is a non-issue, because it only adds more readability to the code which is a good thing. For some languages, like PHP, it is even mandatory to prefix with $this-> if you need to use class fields or methods. I don't like the fact that it makes some lines unnecessarily longer than they could be, if PHP had some way to reference class members without it. |
||
|
|
|
|
In the end it's always a matter of personal choice. Personally, I use this coding convention:
So for me "this" is actually necessary to keep the constructor readable. Edit: the exact same example has been posted by "sinje" while I was writing the code above. |
||||
|
|
|
I personally find that Furthermore, I think that use of Having said that, the choice of style is still a matter of personal preference. It's hard to convince somebody used to read code in a certain way that is useful to change it. |
||||
|
|
|
well, eclipse does color fields, arguments and local variables in different colors, so at least working in eclipse environment there is no need to syntactically distinguish fields in order to specially mark them as "fields" for yourself and generations to come. |
||
|
|
|
|
'this.' in code always suggests to me that the coder has used intellisense (or other IDE equivalents) to do their heavy lifting. I am certainly guilty of this, however I do, for purely vanity reasons, remove them afterwards. The only other reasons I use them are to qualify an ambiguous variable (bad practice) or build an extension method Qualifying a variable
|
|||
|
|
|
|
In VB.NET one of the common practice I use is the following code :
Not all the time but mostly Me / this / self is quite useful. Clarifies the scope that you are talking. |
||
|
|
|
|
If you use StyleCop with all the rules on, it makes you put the |
||
|
|
|
|
In a typical setter method (taken from lagerdalek's answer):
If you didn't use it, the compiler wouldn't know you were referring to the member variable. As far as I'm concerned readability doesn't even come into it, it's all about accessibility of your variables. |
||
|
|
|
|
Not only do I frequently use "this". I sometimes use "that".
And so on. "That" in my code usually means another instance of the same class. |
||
|
|