摘要: public class DataBaseContext { private static DataHelper dataHelper; private static Object INSTANCE_LOCK = new Object(); public static DataHelper getInstance(Context context) { synchronized (INSTANCE_LOCK) { if (dataHelper == null) { dataHelper ... 阅读全文
posted @ 2012-05-04 10:19 soeyong 阅读(136) 评论(0) 推荐(0) 编辑