How to Create an Interface Definition in Java

See Java: Tips and Tricks for similar articles.

An interface definition specifies one or more methods by signature (method return type, name, and arguments). The interface does not contain implementation logic for the methods with the exception of any methods marked as default. Therefore, the actual coding of a method can be deferred until a Java program is written to implement an interface and specify method logic for the non-default methods listed in the interface. To create an interface definition in Java, follow these three steps.

  1. Open your text editor and type in the following Java statements:Java Source for Interface DefinitionThe interface defines three methods for displaying a name and optionally a job title. One method is a default method that contains implementation logic. The remaining two methods do not include implementation logic.
  2. Save your file as CreateAnInterfaceDefinition.java.
  3. Open a command prompt and navigate to the directory containing your Java program. Then type in the command to compile the source and hit Enter.Compile Source for Interface DefinitionThe interface is now ready to be implemented by a Java program.