convention

Private method invoking conventions

I just recently started learning Java. I have a question which is more about conventions used in Java... So suppose I have class A: public class A { public void methodA{ methodB(); } private void methodB{ } } Sometimes I see some people calling private methods inside the class using this (e.g. this.methodB(); ) even if t...