gpt4 book ai didi

eclipse - Eclipse 中鲜为人知但有用的特性

转载 作者:行者123 更新时间:2023-12-03 11:43:24 25 4
gpt4 key购买 nike

我已经使用 Eclipse 很长时间了,一个鲜为人知但非常有用的功能是 Scrapbook Page,它允许您执行 Java 代码的各个部分,而无需将它们作为完整的类。例如,如果我需要执行这个简单的 for 循环,我可以通过创建一个剪贴簿页面(文件->新建->其他->剪贴簿页面)然后输入以下内容并按下“执行所选文本”来实现或者 Ctrl-U 将直接执行代码

for (int i=0; i < 10; ++i)
{
System.out.println("Here is the scrapbook page line: " + i);
}

请发布 eclipse 中可用的其他鲜为人知但有用的功能。我知道 SO 中有条目提到了 eclipse 中可用的有用快捷方式,但是这个是关于被遗忘或鲜为人知的功能

最佳答案

插件 Spy (Alt+Shift+F1) 当然不是很宣传。
然而,如果您对“我如何开发一个看起来像 eclipse 中的功能 X”有任何疑问,那么快速找到实现该功能的正确 eclipse java 源会非常有用!

alt text
(来源:willianmitsuda.com)

另见此 Guide to eclipse3.5 :

The Plugin Spy gives you easily information about the running UI.
Press Alt+Shift+F1 to get information about the current running Eclipse plugin / data types / screen.
This way you can get immediately access to the plugin which is currently running.



alt text
(来源: vogella.de)

Eclipse 3.5 introduced the possibility to check which plugin contributed a menu. Press "Alt+Shift+F2" and select a menu to see who is contributing this menu



alt text
(来源: vogella.de)

关于eclipse - Eclipse 中鲜为人知但有用的特性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1464026/

25 4 0