新的 Java shell,jshell,允许 tab 补全,它显示了类的给定实例可用的所有方法。例如,如果我这样做...
jshell> Integer myInt = 3
myInt ==> 3
jshell> myInt. <<< + TAB >>>
byteValue() compareTo( doubleValue() equals( floatValue()
getClass() hashCode() intValue() longValue() notify()
notifyAll() shortValue() toString() wait(
...我看到了Integer
对象可用的所有方法。如何查看整个类可用的方法和变量,而不仅仅是类的实例?