获取非null的systemService

时间:2018-08-31 18:11:54

标签: android null system-services

每次将getSystemService分配给某个变量时,我都必须稍后检查它是否为空,例如。

LocationManager mLocationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (mLocationManager != null) {...}

有什么办法可以确保它不为空?

0 个答案:

没有答案