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
{
}
Comments
Post a Comment