Name: sgC58550 Date: 03/14/97
BuggyBean is a simple applet with only one new statement in its constructor.
Construcor of class b of the other package b contains anonymous inner class instantiation.
This anonymous class has foo() method which calls bar() method of enclosing instance.
In this case BuggyBean prints java.lang.NoClassDefFoundError.
This error disappears if the bar() is removed.
Here is the source of two java files
BuggyBean.java
b\b.java
//////////////////////////////////////////////////////////
// BuggyBean.java
//
import java.applet.*;
import b.b;
public class BuggyBean extends Applet
{
public BuggyBean ()
{
new b ();
}
}
// End of BuggyBean.java
/////////////////////////////////////////////////////////
// b.java
//
package b;
class InnerClassBase
{
public void foo () {}
}
public class b
{
public b ()
{
new InnerClassBase ()
{
public void foo ()
{
bar ();
}
};
}
public void bar () {}
}
// End of b.java
company - PHYSICON , email - ###@###.###
======================================================================
- relates to
-
JDK-4059631 compiler doesn't create class file for inner class inside of a block
-
- Closed
-