Skip to content

Instantly share code, notes, and snippets.

@alea12
Last active December 19, 2015 05:49
Show Gist options
  • Save alea12/5906612 to your computer and use it in GitHub Desktop.
Save alea12/5906612 to your computer and use it in GitHub Desktop.
コンストラクタの説明用
public class hoge {
public static void main (String[] args) {
System.out.println("Starting function main.");
System.out.println("Creating instance from Fuga class.");
Fuga fuga = new Fuga();
System.out.println("Ending function main.");
}
}
class Fuga {
Fuga () {
System.out.println("This is fuga constructor.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment