“instanceof”的泛型运行时检查

发布于 2024-12-07 13:57:14 字数 499 浏览 0 评论 0原文

我有一个名为 Node 的对象。对象 NodeInternalNodeLeaf 继承自 Node

我正在尝试使用 instanceof 测试对象的类型,如下所示:

if (node instanceof NodeInternal)。我没有添加 因为在运行时,该类型被删除。但是,如果 NodeInternal 上没有 ,我会收到以下警告:NodeInternal 是原始类型。对泛型类型 NodeInternal的引用应该参数化

这种情况我该怎么办?

I have an object called Node<Value>. Objects NodeInternal<Value> and NodeLeaf<Value> inherit from Node<Value>.

I am trying to test what is the type of the object using instanceof as follows:

if (node instanceof NodeInternal). I did not add <Value> because upon runtime, the type is dropped. Without <Value> on NodeInternal however, I get the following warning: NodeInternal is a raw type. References to generic type NodeInternal<Value> should be parameterized.

What should I do in this case?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柒夜笙歌凉 2024-12-14 13:57:15

使用无界通配符:

if (node instanceof NodeInternal<?>) 
  node = ((NodeInternal<Value>) node).SE();

Use an unbounded wildcard:

if (node instanceof NodeInternal<?>) 
  node = ((NodeInternal<Value>) node).SE();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文