4

如何在 IntelliJ 的实时模板中自动生成任意数字(长整数)?

例子:

public static final long uid = $randomLong$;

whererandomLong被一个随机的 long 值替换。我尝试在实时模板定义中添加以下内容作为变量的表达式,但模板输出时没有生成任何内容。

new Random().nextLong()

我想要实现的与 IDEA 代码检查器为序列化版本 UID 字段生成的非常相似,但使用的是实时模板。

4

1 回答 1

7

请尝试添加groovyScript("new Random().nextLong()")为变量表达式。

于 2014-07-29T06:28:46.703 回答