当我使用 GUI 版本时,它显示为
Intent localIntent = new Intent(this, Someclass.class);
但是在带有参数的控制台模式下
jad -o -r -b -f -sjava Someclass.class
它输出为
Intent intent = new Intent(this, com/example/Someclass);
有没有办法像在 gui 模式下一样输出它?我在文档http://www.javadecompilers.com/jad中没有看到任何合适的参数