java错误:类型堆栈不接受参数

时间:2019-12-30 09:32:24

标签: java stack

我正在编写使用Stack的简单程序,但是我得到了error: type Stack does not take parameters 程序是:

import java.util.*;
public class GFG{
    public static void main(String args[]){
        Stack<Integer> st = new Stack<Integer>();
        st.push(3);
        System.out.println((int)st.pop());
    }
}

代码在联机ide上运行良好,但在cmd中运行不正常。可能是什么问题?

0 个答案:

没有答案