Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A super trivial beginner question on Java arrays:

Can anyone explain why the compiler doesn't like this:

class Cycle {}

public class CycleTest {
    Cycle[] cy = new Cycle[3];
    cy[0] = new Cycle();
    cy[1] = new Cycle();
    cy[2] = new Cycle();
}

Many thanks.

share|improve this question
Please mark an answer as correct. – KomodoDave Feb 9 at 22:10

5 Answers

It's because the code you are trying to execute isn't in a method or other type of code block. You have to declare a method or constructor in your class to contain the code.

For example:

public class CycleTest {
    private void initializeCycle() {
        Cycle[] cy = new Cycle[3];
        cy[0] = new Cycle();
        cy[1] = new Cycle();
        cy[2] = new Cycle();
    }
}
share|improve this answer
Thanks to both for the help here: I guess it isn't entirely obvious to me why this doesn't count as field initialisation but instead must be in a method body but I'm most grateful all the same... P. – Patrick S. Nov 12 '09 at 23:14
It's not a field initializer. A field initializer, by definition, is whatever goes on the right side of = in the field definition, and ends at semicolon or comma (if there's more than one field declared at once). In your case, new Cycle[3] is the initializer, and the other 3 lines are just 3 assignment statements. – Pavel Minaev Nov 13 '09 at 0:00

You could use an array initializer:

public class CycleTest {
    Cycle[] cy = {
        new Cycle(),
        new Cycle(),
        new Cycle()
    };
}
share|improve this answer
2  
I don't think you need the new Cycle[] there. – Tom Hawtin - tackline Nov 12 '09 at 23:46
You're right. I have edited accordingly. – meriton Nov 13 '09 at 20:44

And, if you actually intend Cycle[] cy to have object scope (versus only being accessible from within the method in which its defined):

public class CycleTest {
    private Cycle[] cy;
    private void initializeCycle() {
        cy = new Cycle[3];
        cy[0] = new Cycle();
        cy[1] = new Cycle();
        cy[2] = new Cycle();
    }
}

or

public class CycleTest {
    private Cycle[] cy = new Cycle[] {
        new Cycle(),
        new Cycle(),
        new Cycle(),
    };
    private void method() { ... }
    ...
}
share|improve this answer

To initialize instance variable you can use instance initializing block(similar, to static block)

class Cycle {}

public class CycleTest {
    Cycle[] cy = new Cycle[3];

    {
        cy[0] = new Cycle();
        cy[1] = new Cycle();
        cy[2] = new Cycle();
    }
}

or you should initialize it at declaration time.

share|improve this answer

You could provide a constructor for initialization data. A constructor gets called when you create an instance of an object, i.e. new. All you have to do is name it the same as the class and with no return type.

class Cycle {}

public class CycleTest {
  Cycle[] cy;

  // This is a constructor
  // you can put initialization here
  public CycleTest(){
    cy = new Cycle[3];
    cy[0] = new Cycle();
    cy[1] = new Cycle();
    cy[2] = new Cycle();
  }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.