From: fy@pan (Frank Yellin)
Compile a file containing the following code
class test implements foobarAble {
static int foo (int i) {
System.out.println(i);
}
public static void main (String argv[]) {
foo(10);
}
}
interface foobarAble {
abstract int foobar(int i);
}
Yes, ignore the error message. Then delete the definition of foobarAble,
and recompile the file.
I'm asking you to repeat this experiment for me, since my workspace is a
bit screwed up at the moment. . . . And you could give a better
description.
-- Frank
Compile a file containing the following code
class test implements foobarAble {
static int foo (int i) {
System.out.println(i);
}
public static void main (String argv[]) {
foo(10);
}
}
interface foobarAble {
abstract int foobar(int i);
}
Yes, ignore the error message. Then delete the definition of foobarAble,
and recompile the file.
I'm asking you to repeat this experiment for me, since my workspace is a
bit screwed up at the moment. . . . And you could give a better
description.
-- Frank