如何在 intellij 中查看导入的 jdk class 文件的内容

how to view contents of a imported jdk class file in intellij

新手 java 程序员。有什么方法可以在 Intelli J idea 中查看 class 文件的内容?假设我导入一个 class java.lang.Math.* 有什么方法可以查看 *?

的内容

将光标放在 class 名称上并点击 F4。它将引导您到该资源的声明。

对于您拥有的 class 文件,您可以通过双击在 intellij 中打开它(如果它不是您项目的一部分,您可能需要导入该文件)。

对于您正在使用的 class,您不知道它的 class 文件在哪里,例如 Math 此处:

int x=Math.min(2,3);

只需右键单击 Math 单词,Go To,然后单击 Declaration,如下所示:

或者您可以按照@Faisal 的建议。