IntelliJ“实时模板”的 Eclipse 等效项是什么?

发布于 2024-09-29 06:20:03 字数 109 浏览 5 评论 0原文

我的意思是输入“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

乞讨 2024-10-06 06:20:18

它们被称为模板。

转到首选项>;爪哇>编辑>模板 查看预定义模板的列表。

例如,sysout 是:

System.out.println(${word_selection}${});${cursor}

您也可以创建自己的。

They are called Templates.

Go to Preferences > Java > Editor > Templates to see a list of pre-defined templates.

For example, sysout is:

System.out.println(${word_selection}${});${cursor}

You can also create your own.

仅一夜美梦 2024-10-06 06:20:15

检查

Window -> Preferences -> Java -> Editor -> Templates

参考:

Check under

Window -> Preferences -> Java -> Editor -> Templates

Reference:

浅忆流年 2024-10-06 06:20:13

特别是对于“soutv”,我发现以下模式在 Eclipse 中运行良好:

System.out.println("${var} = ${cursor}" + ${var});

正如其他人提到的,您可以通过导航到 Window > 来添加此模板。首选项>爪哇>编辑>模板并单击新建。

在 Eclipse 中,“iter”的等价物似乎是“for”。

For 'soutv' particularly, I found the following pattern worked well in Eclipse:

System.out.println("${var} = ${cursor}" + ${var});

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.

怪异←思 2024-10-06 06:20:10

它称为模板,位于

窗口 → 首选项 → Java → 编辑器 → 模板

在此处输入图像描述

“soutv”模板不存在(“sysout”存在,并且类似),但很容易添加。我使用了这个模式:

System.out.println("variable=" + ${cursor}${});

It is called Templates and it's found under,

Window → Preferences → Java → Editor → Templates

enter image description here

The "soutv" template does not exist ("sysout" does, and it's similar), but it's easy to add. I used this pattern:

System.out.println("variable=" + ${cursor}${});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文