Is there any difference between calling this.method() and method() (including performance difference)?
|
|
|
The only time it matters is if you are using
|
|||||||||||||||||||||
|
|
There is absolutely no difference between these constructs and the generated bytecode will be exactly the same, hence no performance impact. The only reason for using explicit Also please note that if
And in this case it will also have no effect on performance. |
|||||||||||||
|
|
That there is no difference can be seen by calling
Produces the following disassembled output:
|
|||
|
|
|
For methods there is no difference, but it can make a difference with fields. Consider this code:
|
|||
|
|
|
Use Personally I prefer to prefix my class vars with a simple underscore and put a trailing underscore on my method args:
Although most IDEs will make it clear which is which, I find this tends to prevent misassignment and makes the intentions of the code clearer and IMO easier to read. I do use |
||||
|
|
|
There is no real difference - At least there is no performance impact. I prefer not writing "this" - The IDE can usually highlight calls to this anyway, and I think it is less readable when every access to methods/fields/... start with "this.". But it really is a matter of personal preference. |
|||
|
|
|
Using this.method() makes clear that a function associated with the instance of the class is being invoked, as opposed to a static function or one belonging to another object. It's in the spirit of those C++ developers who like to prepend "m_" on all member variables in a class. It makes ownership unambiguous. I tend to like it, but it's not as important when you're using an IDE that clarifies such things using colors and fonts. |
|||
|
|
There is no difference at all other than the readability. It makes it more clearer to the reader. |
|||
|
|
Have you tried to do this.variable in the constructor? In theory, in C++, since the object has not yet been created there is no this. I am not sure of the case in Java. |
|||
|