gpt4 book ai didi

java - 内循环中整数不递增

转载 作者:太空宇宙 更新时间:2023-11-04 06:17:44 25 4
gpt4 key购买 nike

简单描述:在多线程循环中,整数在内部循环中不会递增,而在外部循环中则会递增。

我的代码:

public void run() {
if(maxH==actualmaxH)
actualmaxH--;
if(maxW==actualmaxW)
actualmaxW--;
for(;i<=actualmaxW; i++) {
for (; j <=actualmaxH; j++) {
Hit hit=world.hit(cam.rayFor(maxW,maxH,i,j));
Color col;

if(hit==null)
col = world.backgroundColor;
else
col = hit.geo.material.colorFor(hit, world, 0);

int rgb = ((int)(col.r*255)<< 16) | ((int)(col.g*255)<< 8) | ((int)(col.b*255));
raster.setDataElements(i, maxH - j - 1, model.getDataElements(rgb, null));
}

if(i%30==0) {
frame.update(g);
}
}
frame.update(g);
}

这段代码是通过“new Thread(this)”(this 实现 Runnable)从构造函数调用的,并且构造函数是从具有不同 i、j 和实际值的另一个类调用的。其余基本保持不变

同样,问题是在外循环中 i 递增得很好,而在内循环中它始终为 0(或者当然是其他线程中的其他起始数字)

我希望我说得足够清楚。如果有任何不清楚的地方,我会很乐意回答我的代码问题,并希望任何人都能找到解决方案。还是谢谢=)

编辑:从哪里调用:

Thread t1=new Thread(0,0, img.getWidth()/2, img.getHeight()/2, img.getWidth(), img.getHeight(), world, cam , raster, model, frame, g);
Thread t2=new Thread(img.getWidth()/2+1, 0, img.getWidth(), img.getHeight()/2, img.getWidth(), img.getHeight(), world, cam , raster, model, frame, g);
Thread t3=new Thread(0, img.getHeight()/2+1, img.getWidth()/2, img.getHeight(), img.getWidth(), img.getHeight(), world, cam , raster, model, frame, g);
Thread t4=new Thread(img.getWidth()/2+1, img.getHeight()/2+1, img.getWidth(), img.getHeight(), img.getWidth(), img.getHeight(), world, cam , raster, model, frame, g);

以及要匹配的构造函数:

java.lang.Thread t;
int i;
int j;
int maxW;
int maxH;
int actualmaxW;
int actualmaxH;
World world;
Camera cam;
WritableRaster raster;
ColorModel model;
JFrame frame;
Graphics g;

public Thread(int i, int j, int actualmaxW, int actualmaxH, int maxW, int maxH, World world, Camera cam, WritableRaster raster, ColorModel model, JFrame frame, Graphics g){
this.i=i;
this.j=j;
this.actualmaxW=actualmaxW;
this.actualmaxH=actualmaxH;
this.maxW=maxW;
this.maxH=maxH;
this.world=world;
this.cam=cam;
this.raster=raster;
this.model=model;
this.frame=frame;
this.g=g;
t=new java.lang.Thread(this);
t.start();
}

最佳答案

这似乎是问题所在:

for(;i<=actualmaxW; i++) {
for (; j <=actualmaxH; j++) {

如果在外循环的第一次迭代中j大于actualmaxH会发生什么?内循环将退出。因此,现在是外循环的第二次迭代,其中 i 现在增加了 1。但由于j仍然大于actualmaxH,内部循环将不再被“使用”。

一个可能的解决方案可能是这样的:

for (; i <= actualmaxW; i++) {
for (int temp = j; temp <= actualmaxH; temp++) {

然后在内循环中使用temp而不是j

关于java - 内循环中整数不递增,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27869197/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com