Initializing FileOutputStream inside ObjectOutputStream without making FileOutputStream its own Object

128 Views Asked by At

Does it cause any issues or draw backs (performance hit, memory leak, etc.) to initialize an ObjectOutputStream with

ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(highScorePath));

vs.

FileOutputStream fos = new FileOutputStream(highScorePath);
ObjectOutputStream oos = new ObjectOutputStream(fos);

Part of me wants to go with the top one because you do not have to have two separate variables for something that is only going to serve one purpose. But at the same time, I want to go with the bottom one, since in order to free up resources, you must explicitly call .close() on both fos and oos. What I am not sure about is if I went with the top option and called oos.close(), would that also properly close the FileOutputStream, or would that cause a memory leak?

0

There are 0 best solutions below