我有以下情况:
final String value = null;
AsyncHttpClient client = new AsyncHttpClient();
client.get("http://www.google.com", new AsyncHttpResponseHandler() {
@Override
public void onSuccess(String response) {
value = response;
}
});
System.out.println(value);
我正在从我的主类运行此代码。
现在我需要能够在我的主类中使用覆盖类中的变量(字符串响应)。
我打算如何获得这个变量,因为很明显我没有工作。
ps,建议修改名字,我不知道怎么称呼它。