class Foo{
int[] doop;
public Foo(){
this.doop={1,2,3,4,5};
}
}
I can't compile this, Java ME SDK gives me a bunch of "Illegal Start of Expression" errors. Why? How do I make this work?
|
|
|
Try this:
|
|||
|
|
|
You can't do this in constructor, because this syntax is allowed only for declaration with initialization. Fix to this:
|
|||
|
|