在 Netbeans 中,您可以执行诸如编写“psvm”然后按 Tab 并生成
public static void main(String[] args) {
//your cursor is placed here.
}
类似地,还有编写循环、尝试 catch 块、instanceof 检查和类似的东西的方法。有没有类似这种方法的方法来生成变量的空值检查?
我想要这样的东西:
ResultSet rs;
rs //pressing some magic button like ctrl+space or "rs null<TAB>"
//and a code like this would be generated:
if (rs != null) //your cursor will be placed here.
或者
if (rs != null)
{
//your cursor here
}