vote up 6 vote down star
2

I have been trying to follow StyleCop's guidelines on a project, to see if the resulting code was better in the end. Most rules are reasonable or a matter of opinion on coding standard, but there is one rule which puzzles me, because I haven't seen anyone else recommend it, and because I don't see a clear benefit to it:
SA1101: The call to {method or property name} must begin with the 'this.' prefix to indicate that the item is a member of the class.
On the downside, the code is clearly more verbose that way, so what are the benefits of following that rule? Does anyone here follow that rule?

flag

5  
Keep in mind that StyleCop is intended to be configured for your needs, and the default settings may not be optimal. Not all StyleCop rules are equally sane either, and, in fact, I recall there being some that were downright contradictory, and impossible to satisfy when both are enabled. If you already have a coding style that works for you in that aspect (e.g. prefix fields with _ seems to be popular), stick to it, and change StyleCop settings accordingly. – Pavel Minaev Oct 13 at 19:53
Lots of discussion on this here as well: stackoverflow.com/questions/1499446/… – womp Oct 13 at 20:00
As others have noted, StyleCop attempts to enforce many arbitrary and seeminglyr absurd rules. Not all are meant to be followed and you should strive to configure StyleCop according to the standards you see most practical. – Nathan Taylor Oct 13 at 20:02
1  
The default settings represent a standard though, so if your goal is to have code that conforms to the standard created by a body outside of your team, then don't customize the rules. – jayrdub Oct 13 at 20:04
2  
@Pavel: I assume StyleCop ships with the default rules Microsoft follows, and I would believe that these rules have a rationale. Before changing the default, I'd like to understand why it was set that way! – Mathias Oct 13 at 20:14
show 1 more comment

6 Answers

vote up 10 vote down check

It makes code clearer at a glance. When you use this, it's easier to:

  • Tell static and instance members apart.
  • Distinguish instance members from local variables and parameters (without using a naming convention).

I prefer to use this whenever possible. I suspect well-designed code that adheres to the single responsibility principal may not benefit much from its use, but I haven't ever worked on a codebase where this was the case.

link|flag
5  
It will also clearly separate class instance members from local variables and parameters. – Fredrik Mörk Oct 13 at 19:52
1  
@Fredrik: agreed! It lets you stop using silly naming conventions for those as well. In fact, I'm going to update my answer with your suggestion. – Jeff Sternal Oct 13 at 19:53
2  
Agreed about the class fields vs. local variables. The _ or m_ notation for class fields looks like an archaism to me, and this rule is a reasonable way to replace it while keeping things readable. – Mathias Oct 13 at 20:03
1  
While this answers the question "Why is this a good style rule", the link provided by jayrdub provides a better answer to the question "Why does StyleCop enforce this rule". – Stephen C. Steel Oct 13 at 20:53
You can accomplish exactly the same thing by using unique affixes on member variables (e.g., m_name versus name) and none on local and parameter variables. It's a question of taste, though. – Loadmaster Oct 13 at 21:02
vote up 7 vote down

I don't really follow this guidance unless I'm in the scenarios you need it:

  • there is an actual ambiguity - mainly this impacts either constructors (this.name = name;) or things like Equals (return this.id == other.id;)
  • you want to pass a reference to the current instance
  • you want to call an extension method on the current instance

Other than that I consider this clutter. So I turn the rule off.

link|flag
vote up 5 vote down

I think this article explains it a little

http://blogs.msdn.com/sourceanalysis/archive/2008/05/25/a-difference-of-style.aspx

link|flag
Excellent read - thanks for the link! – Jeff Sternal Oct 13 at 19:59
Thanks, nice to have the inside story! – Mathias Oct 13 at 20:09
vote up 4 vote down

Note that the compiler doesn't care whether you prefix references with this or not (unless there's a name collision with a local variable and a field or you want to call an extension method on the current instance.)

It's up to your style. Personally I remove this. from code as I think it decreases the signal to noise ratio.

Just because Microsoft uses this style internally doesn't mean you have to. StyleCop seems to be a MS-internal tool gone public. I'm all for adhering to the Microsoft conventions around public things, such as:

  • type names are in PascalCase
  • parameter names are in camelCase
  • interfaces should be prefixed with the letter I
  • use singular names for enums, except for when they're [Flags]

...but what happens in the private realms of your code is, well, private. Do whatever your team agrees upon.

Consistency is also important. It reduces cognitive load when reading code, especially if the code style is as you expect it. But even when dealing with a foreign coding style, if it's consistent then it won't take long to become used to it. Use tools like ReSharper and StyleCop to ensure consistency where you think it's important.

Using .NET Reflector suggests that Microsoft isn't that great at adhering to the StyleCop coding standards in the BCL anyway.

link|flag
vote up 2 vote down

In addition it is possible to duplicate variable names in a function so using 'this' can make it clearer.

class foo {
  private string aString;

  public void SetString(string aString){
    //this.aString refers to the class field
    //aString refers to the method parameter        
    this.aString = aString; 
  }
}
link|flag
vote up 2 vote down

I do follow it, because I think it's really convenient to be able to tell apart access to static and instance members at first glance.

And of course I have to use it in my constructors, because I normally give the constructor parameters the same names as the field their values get assigned to. So I need "this" to access the fields.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.