程序调用来自另一个类的方法,这有助于更改我的程序的停止条件。它平均调用该方法约3-8次,永远不会达到停止条件,但它会停止。
public class useExample
{
public static void main(String[] args)
{
Example ex = new Example();
long [] result;
long a = 0;
long b = 0;
long c = 0;
long d = 0;
long e = 0;
int count = 0;
int a1 = 1;
int b1 = 2;
int c1 = 3;
int d1 = 4;
int e1 = 5;
for(int i = 0; i <1; i++)
{
while(a != a1 && b != b1 && c != c1 && d != d1 && e != e1)
{
result = ex.getOnes();
a = result[0];
b = result[1];
c = result[2];
d = result[3];
e = result[4];
System.out.println(result[0] + " " + result[1] + " " + result[2] + " " + result[3] + " " + result[4]);
System.out.println(a + " " + b + " " + c + " " + d + " " + e + " " + count++);
}
System.out.println(a + " " + b + " " + c + " " + d + " " + e + " "+ count);
}
}
}示例类如下所示:
import java.util.*;
public class Example
{
Random r = new Random();
public long[] getOnes(){
int a = r.nextInt(35);
int b = r.nextInt(35);
int c = r.nextInt(35);
int d = r.nextInt(35);
int e = r.nextInt(35);
while(a == 0)
{
a = r.nextInt(35);
//temp[0] = a;
}
while(b == 0 || b == a /*|| b == c || b == d || b == e*/)
{
b = r.nextInt(35);
//temp[1] = b;
}
while(c == 0 || c == a || c == b /*|| c == d || c == e*/)
{
c = r.nextInt(35);
//temp[2] = c;
}
while(d == 0 || d == a || d == b || d == c/*|| d == e*/)
{
d = r.nextInt(35);
//temp[3] = d;
}
while(e == 0 || e == a || e == b || e == c|| e == d)
{
e = r.nextInt(35);
//temp[4] = e;
}
return new long[] {a, b, c, d, e};
}
}仅当while的每个条件为false.This时,useExample类的while循环才会停止,这意味着:
a == a1
b == b1
c == c1
d == d1
e == e1它应该输出它经历了多少个while循环以及每个循环的值。最终将相同的a1值输出到e1。
发布于 2017-06-15 04:18:47
仅当while的每个条件为false.This时,useExample类的while循环才会停止:
:
A == a1 b == b1 c == c1 d == d1 e == e1
那么你的while循环现在就错了,应该是这样的:
while (a != a1 || b != b1 || c != c1 || d != d1 || e != e1)因为while包含的条件不是when to stop而是when to continue
发布于 2017-06-15 04:22:14
只要满足其中一个条件,while循环就会结束。如果希望满足所有条件,请使用||而不是&&。
https://stackoverflow.com/questions/44553675
复制相似问题