java Programming Glossary: abstractmethod
What is an interface in Java? http://stackoverflow.com/questions/1321122/what-is-an-interface-in-java point look at the following code. interface Interface void abstractMethod abstract public class AbstractClass abstract public void abstractMethod.. abstract public class AbstractClass abstract public void abstractMethod You would inherit from these classes almost exactly the same.. InheritsFromInterface implements Interface public void abstractMethod System.out.println abstractMethod public class InteritsFromAbstractClass..
|