J'obtiens cette erreur comme
Aucune instance englobante de type GeoLocation n'est accessible. Il faut qualifier l'allocation avec une instance englobante de type GeoLocation (par exemple, x.new A() où x est une instance de GeoLocation). Cette erreur apparaît sur nouveau ThreadTask(i) . Je ne sais pas pourquoi cela se produit. Toute suggestion sera appréciée.
public class GeoLocation {
public static void main(String[] args) throws InterruptedException {
int size = 10;
// create thread pool with given size
ExecutorService service = Executors.newFixedThreadPool(size);
// queue some tasks
for(int i = 0; i < 3 * size; i++) {
service.submit(new ThreadTask(i));
}
// wait for termination
service.shutdown();
service.awaitTermination(Long.MAX_VALUE, TimeUnit.DAYS);
}
class ThreadTask implements Runnable {
private int id;
public ThreadTask(int id) {
this.id = id;
}
public void run() {
System.out.println("I am task " + id);
}
}
}