Basic HTML version of Foils prepared
Sept 21 1998
Foil 35 Interface Example -- Implementing Storable
From
Java Tutorial 98- 2: Java Language and Object Oriented Techniques NAVO Tutorial --
Sept 23 1998
.
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 Sat Nov 28 1998