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