public void WeatherInfo(){
.......
String weatherLocation = weatherLoc[1].toString();
........
}
基本上我有一个动态字符串,它位于一个名为 WeatherInfo 的空域中。
但我需要从另一个 void 获取 weatherLocation 字符串,就像这样
public void WeatherChecker(){
YahooWeatherUtils yahooWeatherUtils = YahooWeatherUtils.getInstance();
yahooWeatherUtils.queryYahooWeather(getApplicationContext(), weatherLocation, this);
}
因此我需要能够从这个空白处访问weatherLocation。
我该怎么做呢?