Skip to content

Instantly share code, notes, and snippets.

@takahashi-h5
Last active August 25, 2019 21:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takahashi-h5/d84042de394e2dc89afd774f2d03956d to your computer and use it in GitHub Desktop.
Save takahashi-h5/d84042de394e2dc89afd774f2d03956d to your computer and use it in GitHub Desktop.
class Emp{
Emp() { // デフォルトコンストラクタ
System.out.println("初期化する");
}
}
public class Main {
public static void main(String[] args) {
Emp emp = new Emp();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment