Programming/Android

싱글톤 getInstance() null 반환할 때

Jubil 2018. 9. 27. 03:17
반응형

이렇게 해결할 수 있다.


1
2
3
4
5
6
7
8
9
10
11
public class ClassName {
    
    private static ClassName instance;
    private ClassName () {}
    
    public static ClassName getInstance () {
        if ( instance == null )
            instance = new ClassName();
        return instance;
    }
}
cs


반응형

'Programming > Android' 카테고리의 다른 글

Intent.ACTION_DIAL, Intent.ACTION_CALL 차이점  (0) 2017.03.21