はい、null を返すことができます。以下は正常に動作しているサンプル コードです。おそらく call メソッドでは、作成されていないオブジェクトにアクセスしていたでしょう。
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();
}
}