In my experiences, I typically use the "this" keyword for variables in constructors and setters. It cleans up the assignment of arguments, for example:
MyClass(int x) {
this.x = x;
}
Just be careful not to do something like
MyClass(int x) {
x = x;
}
as this assignment will have no effect. However, finalizing the x member variable will prevent this from happening (and most IDEs will tell you the assignment does nothing).
Most importantly (as another person also stated), consistency is important. Code written by one developer in your organization should look the same as code written by the other developers.