欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

代码优化片段--多处使用同一个对象时

程序员文章站 2022-03-03 20:02:55
...

获取一个数据库管理工具的实例:如果多处使用同一个对象,推荐这样获取实例,防止获得的对象为空或者对象不一致

WeatherDB weatherDB = WeatherDB.getInstance(this);
/**
     * 获取weatherDB实例
     */
    public synchronized static WeatherDB getInstance(Context context){
        if (weatherDB==null) {
            weatherDB=new WeatherDB(context); 
        }
        return weatherDB;
    }