Bonjour, pourquoi est ce que ce code n'affiche rien à l'éxécution :


Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
public class MonThread3 implements Runnable {
 
  public void run() {
    int i = 0;
    for (i = 0; i > 10; i++) {
      System.out.println("" + i);
    }
  }
public static void main(String[] args) {
    Thread t = new Thread(new MonThread3());
    t.start();
  }
}