https://gist.github.com/Yukinyaa/5e4c7f70c0e6f32968f64831e6ef1518
| class SingletonClass { | |
| static SingletonClass instance = null; | |
| static public SingletonClass Instance { | |
| get { return instance??(instance = new SingletonClass()); } | |
| } | |
| } |
μ’ λ©μ§λ―?
https://gist.github.com/Yukinyaa/5e4c7f70c0e6f32968f64831e6ef1518
| class SingletonClass { | |
| static SingletonClass instance = null; | |
| static public SingletonClass Instance { | |
| get { return instance??(instance = new SingletonClass()); } | |
| } | |
| } |
μ’ λ©μ§λ―?
?? κ° λμ? μ€λ΅μ’
νν μ±κΈ°
??λ μμ ??μμκ° nullμ΄λ©΄ λ€μ κ°μ λμΆνκ³ μλλ©΄ μμκ°μ λμΆνλ μ°μ°μμ
?? λ μꡬλ..