下列哪项允许您对LocationManager类进行实例化?( )
LocationManager lm = (LocationManager)Runtime.getSystemServiceInstance(Context.LOCATION_SERVICE);
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
LocationManager lm = new LocationManager(Context.LOCATION_SERVICE);
LocationManager lm = (LocationManager)SystemServiceFactory.createSystemService(Context.LOCATION_SERVICE);
LocationManager lm = (LocationManager)getSystem().getService(Context.LOCATION_SERVICE);