所以情況就是這樣。是否可以循環使用不同參數的方法?
我在做一個鍛鍊; Tibial,我不得不用我所有的靜態數字每個隨機數從外部文件lotto.dat
我必須做出一個方法doCompare()
返回true或false比較。我的代碼後,我的問題就會出現:
public static void drawNumbers()throws Exception{
Random rnd = new Random();
int rndN1 = rnd.nextInt(19)+1;
int rndN2 = rnd.nextInt(19)+1;
int rndN3 = rnd.nextInt(19)+1;
int rndN4 = rnd.nextInt(19)+1;
int rndN5 = rnd.nextInt(19)+1;
int rndN6 = rnd.nextInt(19)+1;
System.out.println();
System.out.println("Winner numbers: " + rndN1 + " " + rndN2 + " " + rndN3 + " " + rndN4 + " " + rndN5 + " " + rndN6);
String match = doCompare(rndN1);
if(match.equals("true")){
System.out.println("Match on the number: " + rndN1);
}
}
那麼是否有可能以某種方式循環的「doCompare」與參數「doCompare(rndN1)」,然後rndN2,rndN3等要不然我應該怎麼做才能使這項工作?
是使用一個循環... – brso05 2014-10-29 13:28:26
但我怎麼做,第二次循環經歷改變參數爲rndN2而不是1? – user3703289 2014-10-29 13:29:22
瞭解館藏,這太寬泛了,不成問題。 http://docs.oracle.com/javase/tutorial/collections/ – 2014-10-29 13:29:57