Does using the this keyword affect Java performance at all?
this
In this example:
class Prog { private int foo; Prog(int foo) { this
No it does not.
The code with or without this keyword after compilation is exactly the same.