I recently came across the following methods. I tried googling and did an example to see the difference by defining the methods as follows; both seems to be the same. But, i
public abstract void methodName(); abstract public void methodName();
These two methods are same similar example is
public static void main(String args[]); static public void main(String args[]);
thus above two are same.It is just our wish how we want to write.