这是IDEA快捷键拆解系列的第十九篇。
本文将介绍一下IDEA另外一个强大的功能:Postfix。
Postfix和Live Template有点类似,但目前来看是不支持自定义的,在设置面板(快捷键:Ctrl + Alt + S)搜索“Postfix”即可。
Postfix
从上图可以看到,目前官方定义了Java、JavaScript和Kotlin三种编程语言的Postfix。其中,Description区域描述了该Postfix的作用,Before区域是我们编码前,默认使用Tab键后,即可转换成After区域的代码效果。以下是Java中常用的一些Postfix。
!
!
assert
assert
cast
cast
else
else
filed
filed
for
for
fori
fori
format
format
forr
Postfix
if
if
inst
inst
instanceof
instanceof
iter
iter
lambda
lambda
nn
nn
not
not
notnull
notnull
null
null
opt
opt
return
return
sout
sout
stream
stream
switch
switch
synchronized
synchronized
throw
throw
try
try
twr
Postfix
while
while
从定义来看,Java中的Postfix也就大概三十个,相信熟练掌握之后可以大大提高我们的编码效率。
网友评论