Javac crashes out with an exception when the no. of methods defined exceeds internally set thresholds.
Please use this program attached below to generate the testcase
===============================================================
public class gen
{
public static void main (String args[])
{
int i;
System.out.println ("public class t");
System.out.println ("{");
for (i = 0; i < 2048 ; i ++)
{
System.out.println (" public int fIntValue"+i+" ;");
System.out.println (" public void doNothing"+i+" () {}");
}
System.out.println ("}");
}
}
===============================================
please compile the gen.java
javac gen.java
java gen > t.java
javac t.java to produce the error. The stack-trace is too huge to be attached here. Kindly follow the steps listed above to reproduce this bug.
Please use this program attached below to generate the testcase
===============================================================
public class gen
{
public static void main (String args[])
{
int i;
System.out.println ("public class t");
System.out.println ("{");
for (i = 0; i < 2048 ; i ++)
{
System.out.println (" public int fIntValue"+i+" ;");
System.out.println (" public void doNothing"+i+" () {}");
}
System.out.println ("}");
}
}
===============================================
please compile the gen.java
javac gen.java
java gen > t.java
javac t.java to produce the error. The stack-trace is too huge to be attached here. Kindly follow the steps listed above to reproduce this bug.
- duplicates
-
JDK-4485316 j2se1.4beta could not compile field with initialize for more than 10000 line
-
- Closed
-