Skip to content

Instantly share code, notes, and snippets.

@ArvinRokni
Last active June 4, 2019 16:21
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 ArvinRokni/aaaa46af318d15e3c3a4ea4963b90321 to your computer and use it in GitHub Desktop.
Save ArvinRokni/aaaa46af318d15e3c3a4ea4963b90321 to your computer and use it in GitHub Desktop.
fun getInstance(): Singleton{
if(INSTANCE == null){
// <--- در نظر بگیرید تِرِد دوم برنامه در این خط قرار داشته باشد
INSTANCE = Singleton() // <--- در نظر بگیرید تِرِد اول برنامه در این خط قرار داشته باشد
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment