<<< Common java.lang interfaces | Index | interface constants >>> |
The syntax for declaring an interface
public interface InterfaceName
{
type CONSTANT_NAME = value; // field
returnType methodName( [parameterList] ); // method
}
An interface that defines a method
public interface Printable
{
void print();
}//interface Printable
<<< Common java.lang interfaces | Index | interface constants >>> |