Intellij
有像auto replace
这样的Toad
功能吗?
键盘:ss + spacebar ==> select * from
IntelliJ有live templates
。
例如,输入以下代码并将光标放在花括号内:
public class MyClass {
// put cursor under this line
}
现在输入psvm
并点击TAB
,将出现以下内容
public class MyClass {
// put cursor under this line
public static void main(String[] args) {
}
}
有很多实时模板。这个例子中的一个意思是“public static void main”(psvm
) - 你可以自己研究它们。请注意,许多依赖于上下文。
IntelliJ文档:Live Templates