<<< Tagging class by interface | Index | extends and implements syntax >>> |
A class may implement more than one interface:
import java.text.NumberFormat; public class Employee implements Printable, DepartmentConstants { //... }
<<< Tagging class by interface | Index | extends and implements syntax >>> |