计算Java中的传出耦合



我需要从源文件计算Java程序的传出耦合(对象之间的耦合)。

我已经在 Eclipse 中使用 jdt 提取抽象语法树,但我不确定是否可以直接从另一个类中提取类依赖项。

我不能使用任何指标插件。

感谢您的帮助。

您可以使用

ASTVisitor来检查 AST 中的相关节点。然后,可以使用resolveBinding()resolveTypeBinding()提取依赖项。(为此,您需要在解析时打开"解析绑定"。

我还没有测试过这个,但这个例子应该给你一个想法:

public static IType[] findDependencies(ASTNode node) {
    final Set<IType> result = new HashSet<IType>();
    node.accept(new ASTVisitor() {
        @Override
        public boolean visit(SimpleName node) {
            ITypeBinding typeBinding = node.resolveTypeBinding();
            if (typeBinding == null)
                return false;
            IJavaElement element = typeBinding.getJavaElement();
            if (element != null && element instanceof IType) {
                result.add((IType)element);
            }
            return false;
        }
    });
    return result.toArray(new IType[result.size()]);
}

相关内容

  • 没有找到相关文章

最新更新