Classwo***ng工具箱: 分析泛型数据结构 - 编程入门网
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-06-14
t m_arrayCount; private String m_className; private char m_baseClass; private ArrayList<TypeDescription> m_parameterTypes; private boolean m_isNested; private SignatureDecompositionVisitor m_nestedVisitor; private void reset() { m_arrayCount = 0; m_className = null; m_parameterTypes.clear(); m_isNested = false; } private SignatureDecompositionVisitor(HashMap<String,TypeDescription> tmap) { m_parameterMap = tmap; m_parameterTypes = new ArrayList<TypeDescription>(); } private void checkParameter() { if (m_isNested) { m_parameterTypes.add(m_nestedVisitor.getDescription()); m_isNested = false; } } public SignatureVisitor visitArrayType() { m_arrayCount++; return this; } public void visitBaseType(char desc) { m_baseClass = desc; } public void visitTypeVariable(String name) { String dtor = m_parameterMap.get(name).getDescriptor(); if (dtor == null) { throw new IllegalStateException("Undefined type variable " + name); } else if (dtor.length() < 3 || dtor.charAt(0) != ''L'' || dtor.charAt(dtor.length()-1) != '';'') { throw new IllegalArgumentException ("Not a valid class descriptor: " + dtor); } else { m_className = dtor.substring(1, dtor.length()-1); } } public void visitClassType(String name) { m_className = name; } public SignatureVisitor visitTypeArgument(char wildcard) { checkParameter(); if (wildcard == ''='' || wildcard == ''+'') { if (m_nestedVisitor == null) { m_nestedVisitor = new SignatureDecompositionVisitor (m_parameterMap); } else { m_nestedVisitor.reset(); } m_isNested = true; return m_nestedVisitor; } else { m_parameterTypes.add(null); return new EmptySignatureVisitor(); } } public void visitTypeArgument() { checkParameter(); m_parameterTypes.add(null); } public void visitEnd() { checkParameter(); } public TypeDescription getDescription() { // create array signature prefix StringBuffer buff = new StringBuffer(); for (int i = 0; i < m_arrayCount; i++) { buff.append(' |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于Classworking工具箱: 分析泛型数据结构 - 编程入门网的所有评论