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 need to know if it’s really the same ?
public abstract void methodName();
abstract public void methodName();
Note: public and abstracthas been interchanged in the above 2 methods.
It’s the same. Don’t worry. Two similar declarations of
abstractmethod.