有没有人碰巧知道,如果可能的话,我可以在哪里看一下 java 内置库的代码?
我已经尝试Ctrl + Shift + B
(这是 Netbeans 的 Eclipse 等效项Ctrl + Shift T
)“转到源代码”,但我只能看到方法标题,并且正文始终是:
//compiled code
throw new RuntimeException("Compiled Code");
例如,如果我尝试查看 String.charAt(int),我会看到以下内容
public char charAt(int i)
{
//compiled code
throw new RuntimeException("Compiled Code");
}