php中for循环,有时候还没有循环完就结束了!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php中for循环,有时候还没有循环完就结束了!相关的知识,希望对你有一定的参考价值。
比如要它循环3次,结果,它只循环了1次就结束了!执行for以后的语句去了,怎么办?
....那是你语法有问题。
设置变量i
每循环一次加1 每次循环检测变量i
如果没到3 继续循环。
老大,你怎么学的编程?
这是基础啊。 参考技术A 你把代码发上来,我们帮你分析下
for循环结束后,为什么applet屏幕中没有显示任何内容?
下面是一个简单的Applet代码,问题是for循环结束后的问题。
小程序屏幕上没有显示任何内容。
我想在for循环结束后屏幕被清除了。
我无法修复它我想知道如何防止屏幕清除,以便我的输出在屏幕上。
public class ColorArcs extends Applet
{
int width=50;
int length=50;
int topx=200-25,topy=200-25;
public void paint(Graphics g)
{
for(;length<250;)
{
g.drawArc(200-length/2,200-width/2,length,width,0,180);
length+=2;
width++;
if(length>=50&&length<=75)
setForeground(Color.cyan);
else
if(length>=75&&length<=100)
setForeground(Color.yellow);
else
if(length>=100&&length<=125)
setForeground(Color.green);
else
setForeground(Color.red);
try
{
Thread.sleep(80);
}
catch(InterruptedException ie){}
}
}
}
答案
另一答案
您在设置弧后设置前景,因此,它会被覆盖。这就是为什么你没有看到任何东西。
另一答案
为了保持油漆,遵循Abhinav的想法。但要改变颜色,请参阅下面的代码:(一切都没有修复,但你可以从这个想法开始)
public class ColorArcs extends Applet
{
int width=50;
int length=50;
int topx=200-25,topy=200-25;
public void paint(Graphics g)
{
for(;length<250;)
{
length+=2;
width++;
if(length>=50&&length<=75)
setForeground(Color.cyan);
}
int length_ = 50; width=50;
for(;length_<250;)
{
g.drawArc(200-length_/2,200-width/2,length_,width,0,180);
length_+=2;
width++;
try
{
Thread.sleep(20);
}
catch(InterruptedException ie){}
}
}
}
以上是关于php中for循环,有时候还没有循环完就结束了!的主要内容,如果未能解决你的问题,请参考以下文章