If I write the following class:
public class Example { int j; int k; public Example(int j, int k) { j = j; k = k;
Just like Robert Grant said, 'this' is how you make it clear that you are referring to a member variable instead of a local variable.