Basic HTML version of Foils prepared
Sept 6 1998
Foil 35 Interface Example -- Implementing Storable
From
Java Tutorial 98-2: Java Language and Object Oriented Techniques CPS606 Fall Semester 1999 --
Sept 7 1999
.
by
Geoffrey C. Fox, Nancy McCracken
A class may implement an interface, in which case it provides the body for the methods specified in the interface.
interface storable has store and retrieve methods
public class Picture implements Storable {
public void store(Stream s) {
// JPEG compress image before storing
}
public void retrieve(Stream s) {
// JPEG decompress image before retrieving
}
}
public class StudentRecord implements Storable {
. . .
}
©
Northeast Parallel Architectures Center, Syracuse University, npac@npac.syr.edu
If you have any comments about this server, send e-mail to
webmaster@npac.syr.edu
.
Page produced by
wwwfoil
on Mon Sep 6 1999