0

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
}
4

2 に答える 2

1

そのための独自のテンプレートを作成できます。

Tools->options->Editor->Code templates->New->Abbreviation: ifnn に移動します

拡張テキスト:

if (${EXP instanceof=”Object”} != null) {
    ${selection}${cursor}
}

次に、エディターで「ifnn」+TAB を押します。

于 2014-08-01T05:10:47.963 に答える