Simple question that I couldn't find an answer to online, I created a GUI class that extends JFrame and in the constructor I create the Frame using "setSize(10,10);" and so on, however, many online examples use "this.setSize(10,10);" so my question is; is there any difference at all in the following:
setSize(10,10);
this.setSize(10,10);