選択方法繰り返しできない1つの画像はありますか?色のランダムシーケンス
私はこれを試してみました:
私は、ランダムな使用と私はそれぞれの選択後に、そこから選択した画像を削除し、その後、配列の代わりにList
またはSet
を使用して、選択した画像に
String[] picture = { "blue", "white", "red", "yellow" };
int number_picture1;
// Random function to find a random picture
Random ran = new Random();
number_picture1 = ran.nextInt(picture.length);
System.out.println(picture[number_picture1]);
// There is still posibility to chose the same picture
int number_picture2;
number_picture2 = ran.nextInt(picture.length);
System.out.println(picture[number_picture2]);
エラーが発生しました。//型java.awt.Listはパラメータをとりません。 –
@LukaToni 'java.awt.List'を使用しないでください。[' java.util.List']を使用する必要があります(http://docs.oracle.com/javase/6/docs/api/java/util /List.html)。このインターフェイスのドキュメントを参照してください。 – amit