Introduction to OOP Chapter 2: Abstraction : next previous audio real text

Levels of Abstraction in OO -- Interfaces

Interfaces are one way to describe servies at this level of abstraction.
interface Stack {
	public void push (Object val);
	public Object top () throws EmptyStackException;
	public void pop () throws EmptyStackException;
}
Intro OOP, Chapter 2, Slide 09