我正在使用执行器服务来生成多个可调用线程以进行并行执行。在实现可调用的类的调用方法(重写)中,我检查特定数据。如果数据存在,我将返回数据,否则我将返回 null。当我执行代码时,我得到NullPointerException
. 我们可以从 call 方法返回 null 吗?
基本上这种语法:
public string call ()
{
if (data)
return data;
else
return null;
}
这种东西。
我正在使用执行器服务来生成多个可调用线程以进行并行执行。在实现可调用的类的调用方法(重写)中,我检查特定数据。如果数据存在,我将返回数据,否则我将返回 null。当我执行代码时,我得到NullPointerException
. 我们可以从 call 方法返回 null 吗?
基本上这种语法:
public string call ()
{
if (data)
return data;
else
return null;
}
这种东西。
是的,您可以返回 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();
}
}