Void
, void
, 和 can I just use之间到底有什么区别null
?
我问这是因为我正在查看他们使用 Void 但 Eclipse 错误的示例 Android 代码(它说Void cannot be resolved to a variable
)。
我的代码中断是
public class MyAsyncTask extends AsyncTask<Void, Void, Boolean>{
...
}
我这样用
MyAsyncTask myAsyncTask = new MyAsyncTask();
myAsyncTask.execute((Void),null);//this is the line that breaks "Void cannot be resolved to a variable"