Skip to content

Instantly share code, notes, and snippets.

@nakabonne
Created January 13, 2019 07:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nakabonne/4e3d2a3f52d7cd2d018c975baa1a36a8 to your computer and use it in GitHub Desktop.
Save nakabonne/4e3d2a3f52d7cd2d018c975baa1a36a8 to your computer and use it in GitHub Desktop.
John Ousterhout, A Philosophy of Software Design. p26
FileInputStream fileStream = new FileInputStream(fileName);
BufferedInputStream bufferedStream = new BufferedInputStream(fileStream);
ObjectInputStream objectStream = new ObjectInputStream(bufferedStream);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment