Netbeansでは、「psvm」と書いてからタブを押すなどのことができ、生成されます
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
}