Skip to content

Instantly share code, notes, and snippets.

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 finneycanhelp/781797 to your computer and use it in GitHub Desktop.
Save finneycanhelp/781797 to your computer and use it in GitHub Desktop.
Finney Shows Classname
class OutShow {
private void out(String msg) {
println("******* " + getClass().simpleName + ": " + msg);
}
public static void main(String[] args) {
new OutShow().out("hi");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment