Java: динамически заполнять массив (не вектор / ArrayList) - PullRequest
0 голосов
/ 23 июня 2011

Я пытаюсь выяснить, есть ли для меня возможность динамически заполнять массив объектов внутри класса без использования инициализации массива.Я действительно хотел бы избежать заполнения массива построчно.Возможно ли это, учитывая код, который я имею здесь?

final class Attributes {

    private final int TOTAL_ATTRIBUTES = 7;

    Attribute agility;
    Attribute endurance;
    Attribute intelligence;
    Attribute intuition;
    Attribute luck;
    Attribute speed;
    Attribute strength;

    private Attributes[] attributes; //array to hold objects

    private boolean initialized = false;

    public Attributes() {
        initializeAttributes();
        initialized = true;

        store(); //method for storing objects once they've been initialized.

    }

    private void initializeAttributes() {
        if (initialized == false) {
            agility = new Agility();
            endurance = new Endurance();
            intelligence = new Intelligence();
            intuition = new Intuition();
            luck = new Luck();
            speed = new Speed();
            strength = new Strength();
        }
    }

    private void store() {
        //Dynamically fill "attributes" array here, without filling each element line by line.
    }
}

Ответы [ 4 ]

2 голосов
/ 23 июня 2011
attributes = new Attributes[sizeOfInput];

for (int i=0; i<sizeOfInput; i++) {
    attributes[i] = itemList[i];
}

Кроме того, к вашему сведению вы можете добавить вещи в ArrayList и затем вызвать toArray (), чтобы получить массив объекта.

1 голос
/ 23 июня 2011

Существует короткий синтаксис инициализации массива:

attributes = new Attribute[]{luck,speed,strength,etc};
0 голосов
/ 23 июня 2011
 Field[] fields =  getClass().getDeclaredFields();
 ArrayList<Attrubute> attributesList = new ArrayList<Attrubute>();
 for(Field f : fields)
 {
     if(f.getType() == Attrubute.class)
     {
         attributesList.add((Attrubute) f.get(this));
     }
 }
 attributes = attributesList.toArray(new Attrubute[0]);
0 голосов
/ 23 июня 2011

Вы можете использовать HashMap<String,Attribute>

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...