使用 Eclipse Helios 获取返回特定类类型的对象的方法
在使用 Calendar API 时,我发现 getTime() 是唯一返回 Date 对象的方法。
但为了知道这一点,我在 Eclipse Helios 中使用 Content Assist (Ctrl + Space) 手动检查了所有方法。
所以,我想知道 Eclipse 中是否有某种方法可以获取返回某个特定类的对象的方法列表?
如果这是可能的,那么不同类的使用就会变得非常容易。因为当我想将一个实体转换为另一个实体时,两者都将属于某种 ClassType。然后,如果我可以获得从一种方法转换为另一种方法的列表,我只需要直接检查这些方法的功能并使用最合适的方法!这太好了
While working with Calendar API, I found that getTime() is its only method that returns a Date object.
But to know this, I manually checked all the methods using Content Assist (Ctrl + Space) in Eclipse Helios.
So, I wonder is there some way in Eclipse to get the list of methods that return an object of some specific class?
If that is possible, it would make the use of different classes very easy. Because when I want to convert one entity into other, both will be of some ClassType. Then if I can get the list of methods that convert from one to other, I will only need to check the functionality of those methods directly and use the most eligible one! This would be great
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您编写,
您将获得内容辅助窗口,其中包含在列表顶部返回日期的所有方法。一般来说,如果您在特定上下文(此处为作业)中使用内容辅助,Eclipse 能够为您提供更好的提示。
另一个例子,如果你有一个方法
并以这种方式使用 content-assist
返回 Date 的 Calendar 方法也会被放置在建议列表的顶部。
编辑:请注意,除非您在 Eclipse 的 java 内容辅助首选项中选择了“对提案进行排序 [按相关性]”,否则这将不起作用。但据我所知,这是默认设置。
If you write
You will get the content assist window with all methods that return a Date at the top of the list. In general Eclipse is able to give you better hints if you use content assist in a particular context (here, an assignment).
Another example, if you have a method
And use content-assist this way
The Calendar method that returns a Date will also be placed on top of the suggestion list.
EDIT: note that this won't work unless you have selected "Sort proposals [by relevance]" in the java content assist preferences of eclipse. But as far as I know, this is the default setting.