I have a compilation problem in a Java program:
class FigureEditor {
int[] a; ----- Syntax error on token ";", , expected
a = new int[5];
}
What am I doing wrong?
|
|
You can't have "floating" statements in the class body. Either initialize it directly:
Or use an initializer block:
|
|||||
|
You can't use variables outside a method. |
|||||||
|
|
How its possible? you have to initialize the Possible ways:
Or
Or
|
||||
|
|