public abstract void methodName(); abstract public void methodName();
These two methods are similar to the same example:
public static void main(String args[]); static public void main(String args[]);
Thus, above two are the same. It is just our desire, how we want to write.
Abhishekkumar
source share