在 debian 10 上,我使用apt-get install openjdk-10-jdk openjdk-10-doc
. 我打电话jshell
并想获得的文档System.out.println(...)
,但得到一个错误<no documentation found>
:
| Welcome to JShell -- Version 10.0.1
| For an introduction type: /help intro
jshell> System.out.println( **<tab>**
Signatures:
void PrintStream.println()
void PrintStream.println(boolean x)
void PrintStream.println(char x)
void PrintStream.println(int x)
void PrintStream.println(long x)
void PrintStream.println(float x)
void PrintStream.println(double x)
void PrintStream.println(char[] x)
void PrintStream.println(String x)
void PrintStream.println(Object x)
<press tab again to see documentation>
jshell> System.out.println( **<tab>**
void PrintStream.println()
<no documentation found>
<press tab to see next documentation>
jshell> /env
jshell> System.out.println(System.getProperty("java.class.path"))
.
jshell>
我认为这与如何在 JShell 中提供 javadoc 文档无关?因为我想获取一些标准方法的文档。(这个问题以错误https://bugs.openjdk.java.net/browse/JDK-8188142结尾。问题是类路径定义不正确)。
如何获取文档jshell
?