在这个java代码中,
import java.io.IOException;
public class Copy
{
public static void main(String[] args)
{
if (args.length != 2)
{
System.err.println("usage: java Copy srcFile dstFile");
return;
}
int fileHandleSrc = 0;
int fileHandleDst = 1;
try
{
fileHandleSrc = open(args[0]);
fileHandleDst = create(args[1]);
copy(fileHandleSrc, fileHandleDst);
}
catch (IOException ioe)
{
System.err.println("I/O error: " + ioe.getMessage());
return;
}
finally
{
close(fileHandleSrc);
close(fileHandleDst);
}
}
static int open(String filename)
{
return 1; // Assume that filename is mapped to integer.
}
static int create(String filename)
{
return 2; // Assume that filename is mapped to integer.
}
static void close(int fileHandle)
{
System.out.println("closing file: " + fileHandle);
}
static void copy(int fileHandleSrc, int fileHandleDst) throws IOException
{
System.out.println("copying file " + fileHandleSrc + " to file " +
fileHandleDst);
if (Math.random() < 0.5)
throw new IOException("unable to copy file");
System.out.println("After exception");
}
}
我期望的输出是
copying file 1 to file 2
I/O error: unable to copy file
closing file: 1
closing file: 2
然而,有时我得到这个预期的输出,而在其他时候我得到以下输出:
copying file 1 to file 2
closing file: 1
closing file: 2
I/O error: unable to copy file
有时甚至是这个输出:
I/O error: unable to copy file
copying file 1 to file 2
closing file: 1
closing file: 2
在每次执行期间,我是否得到第一个、第二个或第三个输出似乎都是随机发生的。我发现这个帖子显然谈到了同样的问题,但我仍然不明白为什么我有时会得到输出 1、2 或 3。如果我正确理解了这段代码,那么输出 1 应该是我每次得到的(发生异常)。如何确保始终获得输出 1,或者能够判断何时获得输出 1 或何时获得输出 2 或 3?