The implements keyword is used in a class declaration to indicate that the class provides an implementation for one or more interfaces. If more than one interface is implemented within the class, the interface names must be separated by commas in the declaration. The implements keyword must also follow the extends clause in the class declaration.
The following example demonstrates use of the keyword implements in a class declaration:
public class PotatoHead implements InterchangeableParts
{
}