Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Do you prefix your instance variable with 'this' in java ?

Coding standards question. Maybe should be Wiki, let me know. Should I qualify all my instance properties and methods with this. or should I leave it off. Do you think it makes statements more readable and traceable? Or is it just a few wasted keystrokes?

share|improve this question
I'd say this should be a wiki except I'm pretty sure it's a dupe too. – annakata Jun 5 '09 at 19:02
duplicate of stackoverflow.com/questions/132777/… – Gary Kephart Jun 5 '09 at 19:02
sorry guys, i looked, I can remove this if you feel I should. – Matthew Vines Jun 5 '09 at 19:02
changed it to a wiki, since it looks like I'm not likely to get a definative answer for this one. – Matthew Vines Jun 5 '09 at 19:06
I say, as always, let the market forces of close/open votes decide it – annakata Jun 5 '09 at 19:08
show 3 more comments

marked as duplicate by TheTXI, annakata, Thomas Owens, Henk Holterman, John Saunders Jun 6 '09 at 17:27

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

16 Answers

up vote 13 down vote accepted

I use this when I think it will communicate more clearly without cramping my style. In particular, set methods are a great place where I like to have the clear match between the data member and the method parameter:

public void setImportantValue(double importantValue) {
    this.importantValue = importantValue;
}

With colorized IDEs, this is a little bit redundant but if it helps me work better with my fellow humans, it's a win.

Edit: Thorbjørn reminded me of an excellent point:

Using "this" allow you to have the same name for the parameter as for the field, which clearly shows intent. Also the parameter name ends up in the signature which is what you see in the IDE - having correspondence between setter name and argument removes all doubt.

I was reminded that the user of your code usually only sees your external API. For example, if we want to make it clear to the user (either via javadoc, code completion or IDE mouse-overs) that a method is going to adjust the Euler angles of a simulated airplane, we might use a method such as:

public void setOrientation(double roll, double pitch, double yaw) {
    this.roll = roll;
    this.pitch = pitch;
    this.yaw = yaw;
}

It is clear from the externally-exposed interface and the parameter names what I'm trying to accomplish. I could even make things a little more clear with @param javadoc tags.

The fact that I need to do a little more typing of "this.roll", etc., is a very small price for me to pay to make the both API-user's life easier and the API-maintainer's task more clear. This is especially true since I only pay the price once.

share|improve this answer
2  
This is one of my favorite uses of this. – instanceofTom Jun 5 '09 at 19:43
1  
@dss539, you don't like my example or you don't like my answer? – Bob Cross Jun 5 '09 at 20:15
2  
+1 for the setter snippet. Using "this" allow you to have the same name for the parameter as for the field, which clearly shows intent. Also the parameter name ends up in the signature which is what you see in the IDE - having correspondence between setter name and argument removes all doubt. – Thorbjørn Ravn Andersen Jun 5 '09 at 22:40
@Thorbjørn, Good point - I'll put that in the answer. Thanks. – Bob Cross Jun 6 '09 at 0:26

Using a good naming convention obviates the need for using "this" for readability.

share|improve this answer
I hate when people this.ing The only thing ugliest is "class Foo extends Object" – alamar Jun 5 '09 at 19:12
2  
@Gerald, what naming convention (that I would have to explain to each new employee and enforce across the team) would be more useful than the syntax that's built into the language? That's a serious question; I'm not just being snarky. – Bob Cross Jun 5 '09 at 19:43
@Bob, most naming conventions would do. Anybody who is a programmer should know that mValue is a member variable, for instance, even if it's not their preferred naming convention. The idea is that it's better to tie the naming convention tot he class definitions, where they are guaranteed to be consistent across all usages of that variable. The language construct is not required, so a variable of "value" could be "this.value" or just "value" in various places. When you tie the convention to your definitions, the compiler enforces the consistency of its usage. – Gerald Jun 5 '09 at 19:47
Imagine being a code reviewer who has to check every line of code to see if "this." is being used, instead of just checking the interfaces? – Gerald Jun 5 '09 at 19:56
mValue, underscores and the like are all terrible for anyone who actually reads the code (I hear "muh-Value" in my head when I see that). They are also unenforceable: are you going to force the developers to prefix all of their member variables with an "M"? Why do that when the language already provides "this" for times when you need clarity? With respect to code review: I use PMD, FindBugs and the compiler. Each one of those can detect a mis-assignment in a different and useful way. I certainly wouldn't want to have to write an "mValue" detector for PMD. – Bob Cross Jun 5 '09 at 20:12
show 6 more comments

Leave it off, it doesn't bring any value. Even ReSharper suggests you should remove it because it is redundant.

share|improve this answer
7  
Redundancy is nothing compared to clarity and security. Resharper is wrong here imho. – annakata Jun 5 '09 at 19:02
1  
Also "no value" is clearly subjective. – annakata Jun 5 '09 at 19:06
1  
@annakata - clarity? If you can't figure out if the variable you are looking at is defined in the function, your function is too big - not clear or secure. If you can't find it in the current class, it comes from a parent class, which is not clear or secure. – Otávio Décio Jun 5 '09 at 19:06
1  
@ocdecio - what you're missing is how future readers will read and understand it. You should damn well know, but the guy a year later maybe not. Parent classes is kind neither here nor there. – annakata Jun 5 '09 at 19:10
@annakata, and remember "the guy a year from now" is almost certainly going to be your own self. Clarity now = a little less pain in your own future.... – Bob Cross Jun 5 '09 at 20:17
show 1 more comment

I always use it - I find it helps me think more about what I'm doing, and if something should be scoped to the class.

I didn't use it before I started running StyleCop on everything - now I've converted.

share|improve this answer
How does putting "this" in front of a method invocation help you? – Steve Kuo Jun 5 '09 at 19:40

It does bring a provide distinction between local and instance variables, for one. this can easily replace prefixes some people like to use for that purpose. For me, though, I like to use for IDE autocompletion- it's a bit lazy, but oh well.

share|improve this answer
+1 for laziness, even though I usually avoid 'this' – dss539 Jun 5 '09 at 19:43

Personally, I don't like to have a "this."

share|improve this answer

The advantage is that it can prevent silly mistakes like this:

private String value;


public void setValue(String value) {
    value = value;
}

But I would still be inclined to not require it. Especially if you are using an IDE that color codes the difference.

A nice convention if you want to prevent the mistake with a standard of always using this is Hungarian notation where fields are prefaced with an f, so the example becomes:

private String fValue;

public void setValue(String value) {
    fValue = value;
}

You see that convention in the JUnit source code, for example.

share|improve this answer
some compilers will catch this (eclipse for example) – Scott Stanchfield Jun 5 '09 at 19:01
3  
egad, hungarian over this? – annakata Jun 5 '09 at 19:11
You can't forget hungarian once you do it in the field definition. this can be left out at any time. – Yishai Jun 5 '09 at 19:18
1  
Marking your parameters final would also prevent this. – Michael Myers Jun 5 '09 at 19:25
public string Value{private get; public set;} is way better than what you have there. – dss539 Jun 5 '09 at 19:42
show 2 more comments

matter of taste I think. a proper naming convention generally makes use of "this" unnecessary.

share|improve this answer

I really don't understand why people put this in front of method invocations.

this.someMethod();

someMethod() could be in this class, the parent's class, or static. In this case this doesn't add any value or information. So I'd say in the case of methods, don't use this.

share|improve this answer

I'm not sure there is a definitive answer one way or the other. In my opinion it does help readability, but I can see where people might think it clutters up the page.

share|improve this answer
When it "clutters up the page" it is hurting readability. :( – dss539 Jun 5 '09 at 19:44

IMHO the clarity is always worth a few extra characters, and is a far stronger defence than relying on an ephemeral naming convention.

Saving on typing has always been a weak excuse.

share|improve this answer
So don't use an "ephemeral" naming convention. Pick one and stick to it. Better to use a convention that can be enforced by the compiler than one that may be used intermittently. – Gerald Jun 5 '09 at 19:25
How is that a defence of naming conventions? this. is happily enforceable by the compiler, naming conventions vary from coder to coder. – annakata Jun 5 '09 at 20:22
Naming conventions will only vary in the definition, and are always enforced by the compiler elsewhere. You can never use "value" to reference "mValue" somewhere else in your code, but you can use "this.value" or "value" to reference the same thing in different places. – Gerald Jun 5 '09 at 20:43

Using this for clarity in general is not really useful, since if you have to make it explicit to distinguish it from others, you probably should clear up your method a lot, maybe dividing it into sub methods. An exception is the setter method pattern, so that you don't have to invent arbitrary prefix for the instance variable.

When code contains additional elements that doesn't bring anything useful, the meaning of program gets cluttered. If you prefer using this, why not also qualify every object instead of importing it?

share|improve this answer
+1 for refactoring suggestion. If you have to use 'this.' to make it clear, there's probably a bigger problem. – dss539 Jun 5 '09 at 19:46

I say "only if necessary" as in

public void setFoo(Foo foo) {
    this.foo = foo;
}

The big disadvantage to using it other places is that if you want to change between instance/static/local you have more work to do. (I just had to do this to some code and it wasn't fun...)

share|improve this answer
Fail @ naming. – dss539 Jun 5 '09 at 19:44

I mainly use "this" to help point out the difference between instance and static members. But if I don't have a mix I would normally avoid the "this"

share|improve this answer

I always prefix instance variables with 'this'.

  1. It makes the code more robust in the face of refactoring. For example, if an instance variable is being used in a method and I add a local variable or method parameter with the same name without realising my mistake, then I have introduced a bug without any warning from the compiler.

  2. It makes it more obvious which variables are instance variables. Generally speaking, the more instance variables you have the more vulnerable your code is to multi-threading issues. I'm not saying you should avoid instance variables, because there are cases when they make your code cleaner, but its nice to be able to see at a glance where they are. The 'this' qualifier is the best way of achieving this.

  3. It allows the IDE to provide code completion, thereby resulting in LESS typing, not more.

  4. Code is not always viewed in an editor that has syntax highlighting. e.g. some diff tools.

share|improve this answer

I limit the use of the keyword this in my code to only those situations that it is necessary to achieve the correct behavior.I would avoid using it whenever it is already understood.

Examples of where 'this' is required to achieve desired behavior include constructors and often in equals(Object o) method implementations.

share|improve this answer

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