为什么TreePath是由Object[]而不是TreeNode[]构造的?
从 Java API 来看,JTree 的节点似乎是 TreeNode 的实例。此外,返回的所有 TreePath 似乎都是 TreeNode 的实例。那么,为什么 TreePaths 用 Object[] 表示,而不是 TreeNode[] 呢?这给使用这些类时带来了不便。
谢谢。
From the Java API, it seems that nodes of a JTree are instances of TreeNode. In addition, all TreePaths returned seems to be instances of TreeNode. So, why are TreePaths represented by Object[] instead of TreeNode[]? This give raise to inconvenience when using these classes.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 Java 教程:
See this explanation from the Java tutorial: