I got some objects with certain values, for example: (1)
struct massPoint {
double pos;
double vel;
double acc;
} objects[LOTS];
或相同阵列:
(2)
double pos[LOTS];
double vel[LOTS];
double acc[LOTS];
第一问题: (1) 附加数据和(2) 序列数据是否正确?
第二个问题: 如果某些行动只影响生育和蓄水池,而且没有生物蓄水池,而且有有机水池,那么(2) 就会更好,因为在打断性能方面做得更好,因为胎盘必须用这种方式,而且(1) 必须用这种方式? 或者根本看不到这一概念?