标签: android null system-services
每次将getSystemService分配给某个变量时,我都必须稍后检查它是否为空,例如。
LocationManager mLocationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE); if (mLocationManager != null) {...}
有什么办法可以确保它不为空?