Lecture overview -- Keyboard shortcut: 'u'  Previous page: Interfaces [Section] -- Keyboard shortcut: 'p'  Next page: Interfaces in C# -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Alphabetic index  Help page about these notes  Course home    Abstract classes, Interfaces, and Patterns - slide 11 : 37

Interfaces
An interface corresponds to a fully abstract class. No matters of substance is found in the interface, just declarations of intent

An interface describes signatures of operations, but it does not implement any of them

classes.cs
Sketches of the classes Vehicle, FixedProperty, Bus, and House - for the exercise.
Go to exercise
The interface ITaxable