我正在制作一个小程序,它根据 10 个随机整数显示 10 张卡片的随机集合。
我的想法是制作一个包含 52 张可显示卡片(不包括小丑)的数组,并根据这样的随机整数显示数组中的每张卡片(对不起,我不知道如何使用代码块):
for (int i = 0; i<cards.length; i++) { //cards being my image array
//code that displays each image
}
但是我在尝试将图像添加到数组中时遇到了麻烦,我也不知道如何显示数组中的图像。
我应该像这样添加它们:
Image[] cards = new Image[52];
cards[0] = c1; //name of the Ace of Clubs, I had used getImage() to already get it
前面的语句抛出错误,说这是一个非法的开始。
合并图像后,我还需要帮助来显示图像,因为我不认为:
System.out.println(cards[x]);
将使用图像。
在此先感谢并抱歉看起来如此复杂,我已尝试尽可能地淡化它!