Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 android 中创建纸牌游戏 (blackJack)。前两张卡片是简单的卡片 1 和卡片 2,但是我想按下“Hit me”按钮并发一张新卡片并将其分配给卡片 3、卡片 4 等有什么方法可以做到这一点,而无需创建您需要的最大数量的变量并使用 if then 语句来检查它们是否已被赋值?
使用 aList来跟踪您的发牌,而不是使用单个变量。
List
private List<Card> dealtCard = new LinkedList<Card>();
然后,您可以轻松、动态地添加和删除您的卡片。