Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个巨大的 Java 类,我希望能够看到所有返回的方法MyOwnDataType。我看到可以执行 CTRL+O,然后输入一些内容来打印名称与我刚刚输入的字符串匹配的方法。
MyOwnDataType
我发现了一个部分解决方案:如果我输入MyOwnDataType,我会得到所有返回MyOwnDataType并且具有 type 参数的方法MyOwnDataType。
有没有办法(干净地)做到这一点?
你必须输入*: MyOwnDataType. 解释:
*: MyOwnDataType
<name>(<arguments>) : <return type>
*
(请注意,在 Kepler 中,我必须键入*MyOwnDataType(而不是简单地MyOwnDataType)才能找到具有 return 或参数类型的方法MyOwnDataType。)
*MyOwnDataType