Hello!
Well, I'm trying a rather simple thing which doesn't seem to work in dynamic java: interface truc { int[] bidule = {}; }
The parse of this code gives me the following error: java.lang.ClassFormatError: truc (Illegal field modifiers: 0x9)
I simply can't find what's wrong here and the file compiles fine (even in verbose mode) with javac.
A few informations, I'm using : - Windows 2000 - jdk 1.2.2 (same in 1.3) - dynamic java 1.1.4
The fact is that javacc generates an interface with arrays of string in it, and that's where the problem occured.
Thanks! JY.
Log in to post a comment.
Hello!
Well, I'm trying a rather simple thing which doesn't seem to work in dynamic java:
interface truc
{
int[] bidule = {};
}
The parse of this code gives me the following error:
java.lang.ClassFormatError: truc (Illegal field modifiers: 0x9)
I simply can't find what's wrong here and the file compiles fine (even in verbose mode) with javac.
A few informations, I'm using :
- Windows 2000
- jdk 1.2.2 (same in 1.3)
- dynamic java 1.1.4
The fact is that javacc generates an interface with arrays of string in it, and that's where the problem occured.
Thanks!
JY.