Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/eclipse/8.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 日食JAD结果_Java_Eclipse_Eclipse Plugin_Decompiler - Fatal编程技术网

Java 日食JAD结果

Java 日食JAD结果,java,eclipse,eclipse-plugin,decompiler,Java,Eclipse,Eclipse Plugin,Decompiler,我有一个非常基本的问题。当我在eclipse中使用JAD反编译任何java类时,我可以发现它有如下注释行。这是什么意思?以及如何在eclipse中引用另一个类中的一个类 //Referenced classes of package <package name>: // DetailedLoginException //包的引用类: //详细登录异常 谢谢 我认为它列出了这个类引用/使用的包的类(反编译类)。而且也与反编译类的包相同。就像下面的示例中的Assert和Com

我有一个非常基本的问题。当我在eclipse中使用JAD反编译任何java类时,我可以发现它有如下注释行。这是什么意思?以及如何在eclipse中引用另一个类中的一个类

//Referenced classes of package <package name>:
//     DetailedLoginException
//包的引用类:
//详细登录异常

谢谢

我认为它列出了这个类引用/使用的包的类(反编译类)。而且
也与反编译类的包相同。就像下面的示例中的
Assert
ComparisonFailure
都属于
org.junit

package org.junit;

import org.hamcrest.*;
.....

// Referenced classes of package org.junit:
//            ComparisonFailure

public class Assert
{