The type Stack is not generic; it cannot be parameterized with arguments lt;Charactergt;(Stack 类型不是通用的;它不能用参数 lt;Charactergt; 参数化.)
问题描述
我正在尝试编写一个简单的程序来使用堆栈.它给了我错误
I am trying to write a simple program to use stacks.It is giving me the error
Stack 类型不是通用的;它不能用参数参数化
The type Stack is not generic; it cannot be parameterized with arguments
推荐答案
你的类 Stack
正在遮蔽 java.util.Stack
.您可以重命名您的班级,或使用完全限定的班级名称,如
Your class Stack
is shadowing java.util.Stack
. You could rename your class, or use the fully qualified class name like
这篇关于Stack 类型不是通用的;它不能用参数 <Character> 参数化.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!