vote up 3 vote down star

Duplicate

When do you use the “this” keyword?


What is the best practice case of referencing "this" in any given class?

Basic C# Forms example:

class SomeForm : Form
{
  public SomeForm() {
    Text= "Hey, I'm a new form.";
    Size= new Size(400,350);
    SetupButtons();
  }
  private void SetupButtons() {
    Button btn1= new Button();
    //...
    Controls.Add(btn1);
  }
  public static void Main() {
    Application.Run( new SomeForm() );
  }
}

vs:

class SomeForm : Form
{
  public SomeForm() {
    this.Text= "Hey, I'm a new form.";
    this.Size= new Size(400,350);
    this.SetupButtons();
  }
  private void SetupButtons() {
    Button btn1= new Button();
    //...
    this.Controls.Add(btn1);
  }
  public static void Main() {
    Application.Run( new SomeForm() );
  }
}
flag
1  
I think this (at least the Java side) is covered pretty well by: stackoverflow.com/questions/132777/… stackoverflow.com/questions/146989/… stackoverflow.com/questions/516291/… stackoverflow.com/questions/516768/… – mmyers May 15 at 20:39
Be consistent, whatever you do. – bedwyr May 15 at 20:48

closed as exact duplicate by Noldorin, mmyers, TStamper, Jekke, Esko Luontola May 15 at 20:50

8 Answers

vote up 2 vote down check

The rule I've always followed is to always use this when the object is not declared within the same class and file. For your example I would use this since the controls you are referencing, while part of the class, are declared in the designer file.

I know some of my co-workers believe you should always use this for instances and the class name for statics.

link|flag
1  
Your co-workers are introducing visual noise that isn't needed. Slap them. – Nick Veys May 15 at 21:31
vote up 1 vote down

This is personal preference. Do as you see fit or are comfortable with. I see no problems with either approach. I prefer to not use the this. keyword but this is up to you.

link|flag
3  
To keep my code clean most of the time I don't use "this". But using "this" really helps point where the variable's scope is. – Matthew Whited May 15 at 20:39
I agree Matthew. – Ray Booysen May 15 at 20:42
vote up 1 vote down

This thread should answer your question.

link|flag
vote up 0 vote down

In general, I omit using this unless

  • you're publishing a reference to this (obviously)
  • it's necessary to disambiguate in-scope variables (common in Java setters)
  • it clarifies that you're changing the state of the object somehow
link|flag
vote up 0 vote down

I usually use this if I create a derived class, I usually only use this. to reference things in the parent, otherwise I reference the global variables for the class normally (i.e. without this.)

link|flag
vote up 2 vote down

Sometimes, of course, it's required - to disambiguate between the instance variable and an identically named parameter, or to pass this as a parameter to something else.

When it's not required, I consider it codejunk, just noise on the page that detracts from the content. It is clutter, it gets in my way. I say: drop it when you don't need it.

link|flag
vote up 0 vote down

I use this only when necessary (disambiguation or when I want to express my intentions more clearly).

It really depends on your preferences and naming conventions.

link|flag
vote up -1 vote down

I'm using it when I'm being lazy and want auto completion to come up for me. However I find 'this' to make the code more readable, it signals that the variable you are using is a class scope variable and should be handled with care.

link|flag

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