implements Java Keyword

The implements keyword is used in a class declaration to indicate that the class being declared provides implementations for all methods declared in the interface whose name follows the implements keyword.

Examples

  public class Truck implements IVehicle
  {
  }
  

Remarks

Related Topics

class Java Keyword

extends Java Keyword

interface Java Keyword