Skip to content

Instantly share code, notes, and snippets.

@udoyen
Created January 26, 2019 08:59
Show Gist options
  • Save udoyen/7100ad5b199fbe32ab22f9e3604a7879 to your computer and use it in GitHub Desktop.
Save udoyen/7100ad5b199fbe32ab22f9e3604a7879 to your computer and use it in GitHub Desktop.
Java explicit key creation example
public class Person {
private final Object key = new Object();
public String init() {
synchronized(key) {
// Do stuff
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment