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.
私はまだJavaコレクションフレームワークとそれがどのように機能するかを学んでいます....
型パラメータに関連するサイズを割り当てることはできないと言われているので、次のコードを書いたとき
Stacks<card> stack = new Stacks[5]; // it causes a compiler warning
この警告を非表示にする方法はありますか?
スタック配列を作成してもよろしいですか? 使用する方が良い:
Stack<Card> myStack = new Stack<Card>();