IntelliJ“实时模板”的 Eclipse 等效项是什么?
我的意思是输入“iter”并获得一个“for”循环,并选择要迭代的变量,输入“soutv”以生成一个“System.out.println”,其中“variable=”已在...
谢谢 !
I mean stuff like typing "iter" and getting a "for" loop with a choice of what variable to iterate on , typing "soutv" to generate a "System.out.println" with the "variable=" already in ...
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
它们被称为模板。
转到
首选项>;爪哇>编辑>模板
查看预定义模板的列表。例如,
sysout
是:您也可以创建自己的。
They are called Templates.
Go to
Preferences > Java > Editor > Templates
to see a list of pre-defined templates.For example,
sysout
is:You can also create your own.
检查
参考:
Check under
Reference:
特别是对于“soutv”,我发现以下模式在 Eclipse 中运行良好:
正如其他人提到的,您可以通过导航到 Window > 来添加此模板。首选项>爪哇>编辑>模板并单击新建。
在 Eclipse 中,“iter”的等价物似乎是“for”。
For 'soutv' particularly, I found the following pattern worked well in Eclipse:
As others have mentioned, you can add this template by navigating to Window > Preferences > Java > Editor > Templates and clicking New.
The equivalent of 'iter' seems to be 'for' in Eclipse.
它称为模板,位于
窗口 → 首选项 → Java → 编辑器 → 模板
“soutv”模板不存在(“sysout”存在,并且类似),但很容易添加。我使用了这个模式:
It is called Templates and it's found under,
Window → Preferences → Java → Editor → Templates
The "soutv" template does not exist ("sysout" does, and it's similar), but it's easy to add. I used this pattern: