ハードコードされた値で事前定義されたArrayListがあります。これらをスタックに追加するにはどうすればよいですか?アイデアは、スタッククラスのポップ、プッシュ、ピーク機能を示すことです。
ArrayList<String> al = new ArrayList<String>();
al.add("A");
al.add("B");
al.add("C");
Stack<String> st = new Stack<String>();
st.push(al); **// This doesn't seem to work.. Will I have to loop it in some way?**
System.out.println(st);
ありがとう!