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.
我在 Gephi 包中使用 Jython。我想要一个特定类(来自java)正在实现的接口列表。这在 Jython 中可能吗?
谢谢!
与您在 Java 中执行此操作的方式相同。
例如,列出 ArrayList 实现的接口名称:
from java.util import ArrayList for interface in ArrayList.getInterfaces(): print interface.getName()