3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Javaのテンプレート(作業用)

Last updated at Posted at 2016-03-26

Javaコーディング中に、一部だけ抜き出して動作を確認したいことがあります。その時に、一時的にクラスファイルを作成→mainメソッド作成→実行という手順をとってるのですが、毎回mainメソッドの書き方を検索していました。そのため、以下に作業用テンプレートを記録しておきます。

class Test{
  public static void main(String args[]){
    System.out.println("");
  }
}
3
4
4

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?