Adrninistrator / java-callgraph2

Programs for producing static call graphs for Java programs.
Apache License 2.0
184 stars 66 forks source link

method_call 缺少7,9信息 #33

Open YichenLi00 opened 12 months ago

YichenLi00 commented 12 months ago

如 2 org.apache.tools.ant.AntClassLoader$ResourceEnumeration:(org.apache.tools.ant.AntClassLoader,java.lang.String) (SPE)org.apache.tools.ant.AntClassLoader$ResourceEnumeration:findNextResource() 142 t void 1 1 缺少7 方法实际的返回类型

3 org.apache.tools.ant.AntClassLoader$ResourceEnumeration:nextElement() (SPE)java.util.NoSuchElementException:() 164 v void 1 - 缺少7 方法世纪的返回类型,而9被调用方,Jar包序号则显示为-

Adrninistrator commented 12 months ago

7 方法实际的返回类型,只有在方法实际的返回类型和方法原始的返回类型不一样时,才会有这个字段 9 被调用方,Jar包序号,因为上面的java.util.NoSuchElementException在JDK的jar包里,分析时没有指定对应的jar包,无法获取到对应的序号

YichenLi00 commented 12 months ago

学习到了,谢谢