java for循环嵌套问题,为什么最后一个用于输出的for会报错

publicclassTestInteger{publicstaticvoidmain(String[]args){Integeri=newInteger(23);int... public class TestInteger {
public static void main(String[] args) {

Integer i = new Integer(23);
int res = i.intValue();
System.out.println("对象i对应的整数值"+res);
System.out.println(i.toString().length());
System.out.println(Integer.MAX_VALUE);
System.out.println(Integer.MIN_VALUE);

double r2 = Math.random();
System.out.println(r2);

Random rnd = new Random();
int r3 = rnd.nextInt(10);
System.out.println(r3);

char[] yanZhengMa = new char[4];
String result = "";
for(;;){
Random rnd2 = new Random();
int yzm = rnd2.nextInt(128);
if( yzm>=48&&yzm<=57||
yzm>=65&&yzm<=90||
yzm>=97&&yzm<=122)
for(int j =0;j<yanZhengMa.length;j++)
{

yanZhengMa[j] = (char)yzm;
}
else continue;
}

for(int j =0;j<yanZhengMa.length;j++)
{
result += yanZhengMa[j] ;
}

System.out.println("四位随机验证码"+result);

}

}
展开
 我来答
百度网友d325396
2014-12-09 · TA获得超过318个赞
知道小有建树答主
回答量:212
采纳率:0%
帮助的人:216万
展开全部
因为你的for (;;)是死循环,导致后面的代码无法运行,编译器会报错
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式