可视化 Java 类型层次结构中的类,它们实现不同的功能?
如何轻松地可视化 Java 类型层次结构中的类,该类实现不同的功能。 通过多层继承,找到实现函数的正确类变得很复杂。我们在 Eclipse 中如何提供支持它的功能?
How to easily visualize a Class in Java Type Hierarchy, which implement different functions.
With multiple layers of inheritence finding the correct Class which implements a function gets complicated. Ho we have a feature in eclipse to support it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
取决于您真正需要什么 - UML 图、继承结构?
您可以使用很多工具,从那些为每个类创建带有 UML 图的文档的工具到插件和一些有趣的实现。看看这个列表中的内容:
但我猜想,对于 Eclipse,您真正需要的是 Implementors Plugin 以及可能添加的 调用层次结构插件。但这只是我的猜测...
Depending what you really need - an UML diagram, an inheritance structure?
There are plenty of tools you can use, ranging from those that will create a documentation with UML diagrams for every class to plugins and some funny implementations. Take a look at those from this list:
But I guess what you really need, in case of Eclipse, is Implementors Plugin with a possible addition of Call Hierarchy Plugin. But it's just my guess...
UML 是常用的可视化工具。我怀疑这在这里会有多大帮助。
在 IntelliJ 中这很容易做到:它在左侧装订线中显示一个符号,如果我单击它,它会向我显示实现给定方法的所有类。
UML is the usual visualization tool. I doubt that it'll help much here.
It's easy to do in IntelliJ: it shows a symbol in the left gutter that shows me all the classes that implement a given method if I click on it.