Given the code fragment:
class CallerThread implements Callable<String> {
String str;
public CallerThread(String s) {this.str=s;}
public String call() throws Exception {
return str.concat("Call");
}
}
and
public static void main (String[] args) throws InterruptedException, ExecutionException
{
ExecutorService es = Executors.newFixedThreadPool(4); //line n1
Future f1 = es.submit (newCallerThread("Call"));
String str = f1.get().toString();
System.out.println(str);
}
Which statement is true?
asdfjhfgjuaDCV
4 months, 3 weeks agosteefaand
5 months, 3 weeks agoMahdiHamdii
1 year, 7 months agoWilsonKKerll
2 years, 4 months agoSvetleto13
3 years, 3 months ago