Apparently, any submission with any new Java classes defined by myself generated the following compiler error:
Here are the compiler error messages:
gcj: Internal compiler error: program jc1 got fatal signal 11
--
Why is this so, and how should I write my Java classes? Thanks in advance.
NB: The code compiles and run fine on my own computer.
Java code with new classes always generate compile errors.
Moderator: Board moderators
help
I don't think that creating your own classes has anything to do with the problem. I've got programs Accepted with classes of my own.
try doing this on main:
public static void main(Strign args[])
{
Main m = new Main();
m.start();
}
private void start()
{
//all functionality here
}
try doing this on main:
public static void main(Strign args[])
{
Main m = new Main();
m.start();
}
private void start()
{
//all functionality here
}