Skip to content

Instantly share code, notes, and snippets.

View mertgunay's full-sized avatar
🎯
Focusing

Mert Günay mertgunay

🎯
Focusing
View GitHub Profile
@mertgunay
mertgunay / singleton.java
Created August 1, 2021 00:06
Perfect Singleton Class for Java by Keval Patel
public class SingletonClass implements Serializable {
private static volatile SingletonClass sSoleInstance;
//private constructor.
private SingletonClass(){
//Prevent form the reflection api.
if (sSoleInstance != null){