我正在創(chuàng)建 ArrayLists 并使用 push() 將它們存儲(chǔ)在 Stack 中。然而,當(dāng)我彈出時(shí),它給了我一個(gè)錯(cuò)誤Object cannot be converted to List<Integer>。這是我的代碼: List<Integer> myl=new ArrayList<Integer>();
myl=myStack.pop();
如何將從堆棧彈出的 ArrayList 的類型從對(duì)象更改為鏈表?
長(zhǎng)風(fēng)秋雁
2022-12-28 16:28:39