◆ Interfaces vs. Classes◇ Interface type - All methods are abstract : they don't have to implementation- All methods in an interface type are automatically public- An interface type does not have instance fields ◈ Interface: collection of abstract methods◈ Abstract methods: methods without body/implementation ◆ Declaring an Interfacepublic interface InterfaceName{ method signatures}- don't have ..