当前位置: 首页>>代码示例>>Java>>正文


Java MethodType.distanceTo方法代码示例

本文整理汇总了Java中com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType.distanceTo方法的典型用法代码示例。如果您正苦于以下问题:Java MethodType.distanceTo方法的具体用法?Java MethodType.distanceTo怎么用?Java MethodType.distanceTo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType的用法示例。


在下文中一共展示了MethodType.distanceTo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: lookupPrimop

import com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType; //导入方法依赖的package包/类
/**
 * Search for a primop in the symbol table that matches the method type
 * <code>ctype</code>. Two methods match if they have the same arity.
 * If a primop is overloaded then the "closest match" is returned. The
 * first entry in the vector of primops that has the right arity is
 * considered to be the default one.
 */
public MethodType lookupPrimop(SymbolTable stable, String op,
                               MethodType ctype) {
    MethodType result = null;
    final Vector primop = stable.lookupPrimop(op);
    if (primop != null) {
        final int n = primop.size();
        int minDistance = Integer.MAX_VALUE;
        for (int i = 0; i < n; i++) {
            final MethodType ptype = (MethodType) primop.elementAt(i);
            // Skip if different arity
            if (ptype.argsCount() != ctype.argsCount()) {
                continue;
            }

            // The first method with the right arity is the default
            if (result == null) {
                result = ptype;             // default method
            }

            // Check if better than last one found
            final int distance = ctype.distanceTo(ptype);
            if (distance < minDistance) {
                minDistance = distance;
                result = ptype;
            }
        }
    }
    return result;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:37,代码来源:Expression.java


注:本文中的com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType.distanceTo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。