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