When accessing instance variables or properties of a class from within the class itself, do you prepend them with "this."?
|
|
||||
|
|
No. I consider it visual noise. I think the this variable is a crutch to bad naming styles. Within my type I should be able to manage the naming of the fields, properties and methods. There is absolutely no good reason to name your backing field "myfield", the parameter to the constructor as "myField" and the property to be "myField".
Personally, I always add a prefix of _ to all my private backing fields.
and now with automatic properties in C#
Other than the above maybe the only other time you type this. is because you want to see the intellisense for your current type. If you need to do this then I submit that your type is too big and probably not following the Single Responsibility Principle. And lets say you are. Why keep the this. around after you actually make the call. Refactor it out. |
||||
|
|
|
I only ever use a |
|||||||||||
|
|
In C#, I absolutely do. The primary reasons are:
I follow this philosophy for most stylistic issues. I'm a huge fan of not changing default formatting options in an auto-formatting IDE. It just makes everyone's life harder over something that's really just not that important. |
|||||||||||||||||||
|
|
It adds clutter. So no. |
|||||||
|
|
Absolutely. 'this' avoids the need for any prefixes, such as m_. More importantly, it quickly improves the performance of my code, and this is why: I've really embraced the Microsoft Cops (FxCop, StyleCop). They've really helped me to catch things that normally I wouldn't even think about. For example, if a method does not reference any member variables, one suggestion from FxCop is to mark the method as static, so the method doesn't have to be allocated to every instance of the class. From MSDN:
Prefixing my member variables with 'this.' does two things for me. First, it satisfies StyleCop. Secondly, and more importantly, it helps me to quickly identify if a method needs to be marked static. Of course, running FxCop will tell me if I need to mark a method as static. However, using 'this.' helps me spend more time writing new code and less time remedying FxCop violations. |
||||
|
|
Anytime I have a method parameter whose name is identical to an instance variable (rarely) I do, to avoid confusion. |
||||
|
|
No, but then I write a lot of VB ;) About the only time I'll check this/Me is when I don't remember the exact name of the member or when I need to distinguish it with a function parameter of the same name. |
||||
|
|
|
Nope! I can certainly see that it might be beneficial, but nothing I work on is sufficiently complex to need another level of clarification. |
||||
|
|
|
We're using ReSharper which manages all of that very well. Most of the time we remove 'this' unless keeping it in a constructor since we typically use constructor parameters with the same name. |
||||
|
|
|
I do, for me it adds a bit of clarity to the code, is it in the current procedure or the class? |
||||
|
|
|
Yes, if I see this. I'm sure it is local and I do not need to look any further. If it isn't prefixed with this. (or maybe '_') I have to check if it is declared locally or in an ancestor or if it's a parameter or ... All these checks take a little more time during debugging... |
||||
|
|
|
Generally yes, I do. Communicating scope is an important aspect of readability. It distinguishes it from local variables, static methods, etc. It also communicates that the definition is "nearby". Oh, and I only do it for public methods/properties. Those tend to be capitalized so this.Thing looks right. The internal view looks like the external view (myInstance.Thing). Private properties are often lowercase and so it's a less attractive idea for those. It's not strictly necessary of course, and some people prefer it more terse. But it provides hints to me and other devs who might look at the code. |
||||
|
|
|
I do. I got in the habit back when Intellisense in Visual Studio wasn't as clever as it is these days. I don't find it distracting, I suppose because I write a lot of Python and am used to seeing self everywhere. |
||||
|
|
|
Only when required to distinguish from parameters, as in a setter or constructor. I consider its use in unnecessary cases to be "codejunk", analogous to Edward Tufte's chartjunk. Noise, instead of signal. |
||||
|
|
|
If your instance variable name is same as method argument- it is no longer "simply a reason to clarify". If you don't do prepend- it can lead to defects. I think that's what Ben S meant- but just wanted to stress- that its not a matter of best practice any more. I often do- increases clarity. I don't think it adds to clutter- because our brains quickly reads past it, but registers that it is an instance variable |
||||
|
|