単純なクラスで作業していて、オブジェクトの作成が重くないとします。
class Simple {
public final int data1;
public final float data2;
...
}
simple-objects を継続的にキューに入れる必要があります。
queue.add(new Simple(123,123f,...));
Object-Pool で作業し、Simple-Class の変更可能なクラスを変更する方が高速ですか? ないことを願っています。