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でカードゲーム(ブラックジャック)を作成しています。最初の 2 枚のカードは簡単です card1 と card2 ですが、Hit me ボタンを押して新しいカードを配り、それを card3、card4 などに割り当てたいのですが、基本的に必要な最大数の変数を作成せずにこれを行う方法はありますか? if thenステートメントを使用して、値が割り当てられているかどうかを確認しますか?
List個々の変数を持つ代わりに、配られたカードを追跡するために使用します。
List
private List<Card> dealtCard = new LinkedList<Card>();
その後、カードを簡単かつ動的に追加および削除できます。