我正在使用执行程序服务来生成多个可调用线程以进行并行执行。在实现可调用的类的调用方法(重写)中,我检查特定数据。如果数据存在,我将返回数据,否则我将返回null。当我执行代码时,我得到NullPointerException
。我们可以从调用方法返回null吗?
基本上这种语法:
public string call ()
{
if (data)
return data;
else
return null;
}
这种东西。
答案 0 :(得分:1)
是的,你可以返回null,下面是工作正常的示例代码,可能在调用方法中你可能访问了一个未创建的对象
import java.util.concurrent.Callable;
import java.util.concurrent.Executors;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
public class Test {
public static void main(String[] args) throws Exception {
ExecutorService executorService1 = Executors.newFixedThreadPool(4);
Future f2 =executorService1.submit(new callable());
System.out.println("f2 " + f2.get());
executorService1.shutdown();
}
}
class callable implements Callable<String> {
public String call() {
if(1==1)
return null;
return Thread.currentThread().getName();
}
}