mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
25 lines
413 B
Java
25 lines
413 B
Java
// Make sure that file handles are garbage collected.
|
|
import java.io.*;
|
|
public class FileHandleGcTest
|
|
{
|
|
static void kill () throws FileNotFoundException
|
|
{
|
|
for (int i = 0; i < 65536; i++)
|
|
{
|
|
FileInputStream f = new FileInputStream ("/dev/null");
|
|
}
|
|
}
|
|
|
|
public static void
|
|
main (String argv [])
|
|
{
|
|
try
|
|
{
|
|
kill ();
|
|
}
|
|
catch (FileNotFoundException _)
|
|
{
|
|
}
|
|
}
|
|
}
|