Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 Eclipse 向 JUNG 库的 Graph 类添加一个方法。我该怎么做?
按照这个答案,我让 JUNG 作为参考库正常工作:https ://stackoverflow.com/a/5618076/1949665
1)您可以访问源:只需添加您的方法
2)您可以扩展类并在我们的扩展类中添加方法
3) 使用实现您的方法的静态方法编写一个 Util 类,而不是简单地使用原始类。
您上面的评论暗示您希望能够在图表中找到派系。(在您编辑之前我没有看到原始问题。)
如果是这样,它不需要是 Graph 本身的方法,它只需要接受 Graph 作为参数。Graph 是一种类似于 List 或 Map 的类型,它不应该为您可能想在图上使用的每种算法提供方法。