







Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Notes; Class: Principles of Programming Languages; Subject: Computer Science; University: University of Colorado - Boulder; Term: Spring 2001;
Typology: Study notes
1 / 13
This page cannot be seen from the preview
Don't miss anything!








Amer Diwan
interface Shape { public float center() public void rotate(float degrees) } interface Drawable { public void setColor(Color c) public void draw() } class Circle implements Shape, Drawable { ... }
Narrowing
Widening