Interface
An abstract method is one that does not have a definition within the class. Only the prototype is present.
An interface is collection of constants and abstract methods.
Syntax
interface interface_name {
constant -declarations;
abstract methods;
}
Previous slide
Next slide
Back to first slide
View graphic version